Commit c23e3de 1 parent a1f29b7 commit c23e3de Copy full SHA for c23e3de
File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 49
49
50
50
- name : Get pip cache dir
51
51
id : pip-cache
52
+ shell : bash
52
53
run : |
53
54
python -m pip install --upgrade pip
54
- echo "::set-output name=dir::$(pip cache dir)"
55
+ echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
56
+ echo "dir=$(pip cache dir)" >> $env:GITHUB_OUTPUT
55
57
56
58
- name : Cache dependencies
57
59
id : cache-dep
77
79
shell : bash
78
80
- name : Run unit tests without extra packages as root
79
81
run : |
80
- if [[ '${{ matrix.os }}' != 'windows-latest' ]]; then
82
+ if [[ '${{ matrix.os }}' != 'windows-latest' ]]; then
81
83
# provide the same path as non-root to get the correct virtualenv
82
84
sudo env "PATH=$PATH" python -m pyfakefs.tests.all_tests_without_extra_packages
83
85
fi
97
99
shell : bash
98
100
- name : Run performance tests
99
101
run : |
100
- if [[ '${{ matrix.os }}' != 'macOS-latest' ]]; then
102
+ if [[ '${{ matrix.os }}' != 'macOS-latest' ]]; then
101
103
export TEST_PERFORMANCE=1
102
104
python -m pyfakefs.tests.performance_test
103
105
fi
You can’t perform that action at this time.
0 commit comments