File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 42
42
- name : Test source distribution
43
43
shell : bash
44
44
run : |
45
+ set -xe
45
46
python -m venv test-sdist
46
- test-sdist/bin/activate
47
+ source test-sdist/bin/activate
47
48
which python
48
49
python -m pip install --force-reinstall `find dist -name "*.tar.gz"`[${{ inputs.test_extras }}]
49
50
cd ${{ runner.temp }}
53
54
- name : Test source distribution
54
55
shell : bash
55
56
run : |
57
+ set -xe
56
58
python -m venv test-sdist
57
- test-sdist/bin/activate
59
+ source test-sdist/bin/activate
58
60
which python
59
61
python -m pip install --force-reinstall `find dist -name "*.tar.gz"`
60
62
cd ${{ runner.temp }}
71
73
- name : Test pure Python wheel distribution
72
74
shell : bash
73
75
run : |
76
+ set -xe
74
77
python -m venv test-wheel
75
- test-wheel/bin/activate
78
+ source test-wheel/bin/activate
76
79
which python
77
80
python -m pip install --force-reinstall `find dist -name "*.whl"`[${{ inputs.test_extras }}]
78
81
cd ${{ runner.temp }}
82
85
- name : Test pure Python wheel distribution
83
86
shell : bash
84
87
run : |
88
+ set -xe
85
89
python -m venv test-wheel
86
- test-wheel/bin/activate
90
+ source test-wheel/bin/activate
87
91
which python
88
92
python -m pip install --force-reinstall `find dist -name "*.whl"`
89
93
cd ${{ runner.temp }}
You can’t perform that action at this time.
0 commit comments