Skip to content

Commit

Permalink
try with editable install
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Feb 17, 2022
1 parent 0b2e252 commit cd8656f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
mkdir test
tar --strip-components=1 -zxvf jupyter_server* -C ./test
cd test
pip install .[test]
pip install -e .[test]
pip install pytest-github-actions-annotate-failures
- name: Run Test
run: |
Expand Down
4 changes: 2 additions & 2 deletions tests/extension/test_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ def _kill_extension_app():
[
sys.executable,
"-m",
"tests.extensions.mockextensions.app",
"mockextensions.app",
f"--port={port}",
"--ip=127.0.0.1",
"--no-browser",
*argv,
],
cwd=os.path.dirname(os.path.dirname(HERE)),
cwd=HERE,
)

request.addfinalizer(_kill_extension_app)
Expand Down

0 comments on commit cd8656f

Please sign in to comment.