Skip to content

Commit

Permalink
path testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Marton Havasi committed Dec 11, 2024
1 parent 2d89c01 commit b697e1e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/notebooks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,14 @@ jobs:
env:
PYTHONPATH: $PYTHONPATH:$PWD
run: |
set -e
set +e
cd examples/
python -m flow_matching "import flow_matching; print('flow_matching module imported successfully')"
python -c "import flow_matching; print('flow_matching module imported successfully')"
python -c "import sys; print(sys.path)"
cd ..
for file in examples/*.ipynb; do
jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=300 "$file"
PYTHONPATH=$PYTHONPATH jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=300 "$file"
done

0 comments on commit b697e1e

Please sign in to comment.