@@ -17,15 +17,14 @@ jobs:
1717
1818 run-tests :
1919
20- name : Run tests for ${{ matrix.os }} on ${{ matrix.python-version }} and ${{ matrix.r-version }}
20+ name : Run tests for ${{ matrix.os }} on ${{ matrix.python-version }}
2121 runs-on : ${{ matrix.os }}
2222
2323 strategy :
2424 fail-fast : false
2525 matrix :
2626 os : ['ubuntu-latest', 'macos-latest', 'windows-latest']
2727 python-version : ['3.7', '3.8', '3.9', '3.10']
28- r-version : ['3.6.3']
2928
3029 steps :
3130 - uses : actions/checkout@v2
@@ -45,29 +44,15 @@ jobs:
4544 run : tox -e pytest -- -m "unit or (not integration and not end_to_end)" --cov=./ --cov-report=xml -n auto
4645
4746 - name : Upload coverage report for unit tests and doctests.
48- if : runner.os == 'Linux' && matrix.python-version == '3.9' && matrix.r-version == '3.6.3'
47+ if : runner.os == 'Linux' && matrix.python-version == '3.9'
4948 shell : bash -l {0}
5049 run : bash <(curl -s https://codecov.io/bash) -F unit -c
5150
52- # - name: Run integration tests.
53- # shell: bash -l {0}
54- # run: tox -e pytest -- -m integration --cov=./ --cov-report=xml -n auto
55-
56- # - name: Upload coverage reports of integration tests.
57- # if: runner.os == 'Linux' && matrix.python-version == '3.9' && matrix.r-version == '3.6.3'
58- # shell: bash -l {0}
59- # run: bash <(curl -s https://codecov.io/bash) -F integration -c
60-
6151 - name : Run end-to-end tests.
6252 shell : bash -l {0}
6353 run : tox -e pytest -- -m end_to_end --cov=./ --cov-report=xml -n auto
6454
6555 - name : Upload coverage reports of end-to-end tests.
66- if : runner.os == 'Linux' && matrix.python-version == '3.9' && matrix.r-version == '3.6.3'
56+ if : runner.os == 'Linux' && matrix.python-version == '3.9'
6757 shell : bash -l {0}
6858 run : bash <(curl -s https://codecov.io/bash) -F end_to_end -c
69-
70- - name : Validate codecov.yml
71- if : runner.os == 'Linux' && matrix.python-version == '3.9' && matrix.r-version == '3.6.3'
72- shell : bash -l {0}
73- run : cat codecov.yml | curl --data-binary @- https://codecov.io/validate
0 commit comments