Skip to content

Commit 2f1dd0a

Browse files
committed
add integration tests back to ci
1 parent 21bae06 commit 2f1dd0a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- uses: actions/checkout@v2
1616
with:
1717
fetch-depth: 1
18-
# - uses: smacke/submodule-checkout@v2
19-
# if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '3.10.x'}}
20-
# with:
21-
# ssh-key: '${{ secrets.TEST_DATA_SECRET }}'
18+
- uses: smacke/submodule-checkout@v3
19+
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '3.10.x'}}
20+
with:
21+
ssh-key: '${{ secrets.TEST_DATA_SECRET }}'
2222
- name: Set up Python
2323
uses: actions/setup-python@v1
2424
with:
@@ -45,10 +45,10 @@ jobs:
4545
if: matrix.os == 'ubuntu-latest'
4646
run: |
4747
pytest --cov-config=.coveragerc --cov-report=xml:cov.xml --cov=ffsubsync -v -m 'not integration' tests/
48-
# - name: Run integration tests with pytest
49-
# if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '3.10.x'}}
50-
# run: |
51-
# INTEGRATION=1 pytest --cov-config=.coveragerc --cov-report=xml:cov.xml --cov=ffsubsync -v -m 'integration' tests/
48+
- name: Run integration tests with pytest
49+
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '3.10.x'}}
50+
run: |
51+
INTEGRATION=1 pytest --cov-config=.coveragerc --cov-report=xml:cov.xml --cov=ffsubsync -v -m 'integration' tests/
5252
- name: Upload coverage report
5353
if: matrix.os == 'ubuntu-latest'
5454
uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)