Skip to content

Commit df88437

Browse files
committed
test server
1 parent 85717fc commit df88437

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/actions/test-downstream/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ runs:
2626
2727
# Set up venv
2828
python -m venv test_venv
29-
bin_dir=./test_venv/bin
30-
${bin_dir}/python -m pip install -U pip
31-
${bin_dir}/python -m pip install ${package_spec}
32-
${bin_dir}/python -m pip install . --force-reinstall
29+
./test_venv/bin/activate
30+
python -m pip install -U pip
31+
python -m pip install ${package_spec}
32+
python -m pip install . --force-reinstall
3333
3434
# Test the downstream package
35-
${bin_dir}/pytest ${pytest_args}
35+
pytest ${pytest_args}
3636
3737
# Cleanup
3838
rm -rf ./test_venv

.github/workflows/downstream.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
# with:
3636
# package_name: qtconsole
3737

38-
- name: Test nbconvert
39-
uses: ./.github/actions/test-downstream
40-
with:
41-
package_name: nbconvert
38+
# - name: Test nbconvert
39+
# uses: ./.github/actions/test-downstream
40+
# with:
41+
# package_name: nbconvert
4242

4343
- name: Test jupyter_server
4444
uses: ./.github/actions/test-downstream

0 commit comments

Comments
 (0)