We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Hi I think there is an issue with the glob.
Here is the directory ❯ tree examples/1-singlecell -L 1 examples/1-singlecell ├── hoc ├── morphology ├── singlecell.ipynb └── x86_64
pytest --nbmake examples//1-singlecell/singlecell.ipynb works pytest --nbmake examples/**/*ipynb does not work pytest --nbmake **/*ipynb does not work
When they don't work the error is the following:
It says ERROR: file or directory not found: **/*ipynb
To Reproduce
Expected behavior
The wildcard character to detect the .ipynb files in the inner directories.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Hi I think there is an issue with the glob.
Here is the directory
❯ tree examples/1-singlecell -L 1
examples/1-singlecell
├── hoc
├── morphology
├── singlecell.ipynb
└── x86_64
pytest --nbmake examples//1-singlecell/singlecell.ipynb works
pytest --nbmake examples/**/*ipynb does not work
pytest --nbmake **/*ipynb does not work
When they don't work the error is the following:
It says ERROR: file or directory not found: **/*ipynb
To Reproduce
Expected behavior
The wildcard character to detect the .ipynb files in the inner directories.
The text was updated successfully, but these errors were encountered: