File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,29 +31,26 @@ jobs:
3131 uses : actions/setup-python@v5
3232 with :
3333 python-version : ${{ matrix.python-version }}
34- continue-on-error : |
35- ${{
34+ continue-on-error : ${{
3635 matrix.python-version == '3.6' ||
3736 matrix.python-version == '3.7' ||
38- matrix.python-version == '3.8'
37+ matrix.python-version == '3.8'
3938 }}
4039
4140 - name : Install dependencies
4241 run : |
4342 python -m pip install -e .[dev]
44- continue-on-error : |
45- ${{
43+ continue-on-error : ${{
4644 matrix.python-version == '3.6' ||
4745 matrix.python-version == '3.7' ||
48- matrix.python-version == '3.8'
46+ matrix.python-version == '3.8'
4947 }}
5048
5149 - name : Run benchmarks
5250 run : |
5351 python -m unittest discover -s tests -p 'test_bench_*.py'
54- continue-on-error : |
55- ${{
52+ continue-on-error : ${{
5653 matrix.python-version == '3.6' ||
5754 matrix.python-version == '3.7' ||
58- matrix.python-version == '3.8'
55+ matrix.python-version == '3.8'
5956 }}
Original file line number Diff line number Diff line change @@ -31,29 +31,26 @@ jobs:
3131 uses : actions/setup-python@v5
3232 with :
3333 python-version : ${{ matrix.python-version }}
34- continue-on-error : |
35- ${{
34+ continue-on-error : ${{
3635 matrix.python-version == '3.6' ||
3736 matrix.python-version == '3.7' ||
38- matrix.python-version == '3.8'
37+ matrix.python-version == '3.8'
3938 }}
4039
4140 - name : Install dependencies
4241 run : |
4342 python -m pip install -e .[dev]
44- continue-on-error : |
45- ${{
43+ continue-on-error : ${{
4644 matrix.python-version == '3.6' ||
4745 matrix.python-version == '3.7' ||
48- matrix.python-version == '3.8'
46+ matrix.python-version == '3.8'
4947 }}
5048
5149 - name : Run tests and code coverage
5250 run : |
5351 coverage run --source=src -m unittest discover -s tests -p 'test_unit_*.py'
5452 coverage report -m
55- continue-on-error : |
56- ${{
53+ continue-on-error : ${{
5754 matrix.python-version == '3.6' ||
5855 matrix.python-version == '3.7' ||
5956 matrix.python-version == '3.8'
You can’t perform that action at this time.
0 commit comments