File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ runs:
26
26
27
27
# Set up venv
28
28
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
33
33
34
34
# Test the downstream package
35
- ${bin_dir}/ pytest ${pytest_args}
35
+ pytest ${pytest_args}
36
36
37
37
# Cleanup
38
38
rm -rf ./test_venv
Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ jobs:
35
35
# with:
36
36
# package_name: qtconsole
37
37
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
42
42
43
43
- name : Test jupyter_server
44
44
uses : ./.github/actions/test-downstream
You can’t perform that action at this time.
0 commit comments