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