@@ -28,10 +28,10 @@ jobs:
28
28
- uses : actions/checkout@v4
29
29
with :
30
30
fetch-depth : 1
31
- - uses : smacke/submodule-checkout@v3
32
- if : ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '3.10'}}
33
- with :
34
- ssh-key : ' ${{ secrets.TEST_DATA_SECRET }}'
31
+ # - uses: smacke/submodule-checkout@v3
32
+ # if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '3.10'}}
33
+ # with:
34
+ # ssh-key: '${{ secrets.TEST_DATA_SECRET }}'
35
35
- name : Set up Python
36
36
uses : actions/setup-python@v5
37
37
with :
@@ -54,21 +54,21 @@ jobs:
54
54
if : matrix.os != 'ubuntu-latest'
55
55
run : |
56
56
pytest --cov-config=.coveragerc --cov-report= --cov=ffsubsync -v -m 'not integration' tests/
57
- - name : Run unit tests with pytest (with coverage)
58
- if : matrix.os == 'ubuntu-latest'
59
- run : |
60
- pytest --cov-config=.coveragerc --cov-report=xml:cov.xml --cov=ffsubsync -v -m 'not integration' tests/
61
- - name : Run integration tests with pytest
62
- if : ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '3.10'}}
63
- run : |
64
- INTEGRATION=1 pytest --cov-config=.coveragerc --cov-report=xml:cov.xml --cov=ffsubsync -v -m 'integration' tests/
65
- - name : Upload coverage report
66
- if : matrix.os == 'ubuntu-latest'
67
- uses : codecov/codecov-action@v1
68
- with :
69
- token : ' ${{ secrets.CODECOV_TOKEN }}'
70
- files : ./cov.xml
71
- env_vars : PYTHON
72
- name : codecov-umbrella
73
- fail_ci_if_error : true
74
- verbose : true
57
+ # - name: Run unit tests with pytest (with coverage)
58
+ # if: matrix.os == 'ubuntu-latest'
59
+ # run: |
60
+ # pytest --cov-config=.coveragerc --cov-report=xml:cov.xml --cov=ffsubsync -v -m 'not integration' tests/
61
+ # - name: Run integration tests with pytest
62
+ # if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '3.10'}}
63
+ # run: |
64
+ # INTEGRATION=1 pytest --cov-config=.coveragerc --cov-report=xml:cov.xml --cov=ffsubsync -v -m 'integration' tests/
65
+ # - name: Upload coverage report
66
+ # if: matrix.os == 'ubuntu-latest'
67
+ # uses: codecov/codecov-action@v1
68
+ # with:
69
+ # token: '${{ secrets.CODECOV_TOKEN }}'
70
+ # files: ./cov.xml
71
+ # env_vars: PYTHON
72
+ # name: codecov-umbrella
73
+ # fail_ci_if_error: true
74
+ # verbose: true
0 commit comments