Skip to content

Commit

Permalink
Fix Isolated pytest (#6229)
Browse files Browse the repository at this point in the history
- add the notebook dependencies to the isolated env
- use the correct requirements file in the test
  • Loading branch information
NoureldinYosri committed Aug 4, 2023
1 parent 701538c commit c5afcce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dev_tools/packaging/isolated_packages_test.py
Expand Up @@ -21,7 +21,7 @@
from dev_tools import shell_tools
from dev_tools.modules import list_modules

PACKAGES = ["-r", "dev_tools/requirements/deps/pytest.txt"]
PACKAGES = ["-r", "dev_tools/requirements/isolated-base.env.txt"]


@pytest.mark.slow
Expand Down
1 change: 1 addition & 0 deletions dev_tools/requirements/isolated-base.env.txt
@@ -1,6 +1,7 @@
# a minimal env for testing isolated notebooks and packages

-r deps/pytest.txt
-r deps/notebook.txt

# for shell_tools
requests

0 comments on commit c5afcce

Please sign in to comment.