Skip to content

Commit

Permalink
temporarily disable integration tests in CI while submodule checkout …
Browse files Browse the repository at this point in the history
…broken
  • Loading branch information
smacke committed Mar 26, 2023
1 parent f0625be commit df47244
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: smacke/submodule-checkout@v2
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '3.10.x'}}
with:
ssh-key: '${{ secrets.TEST_DATA_SECRET }}'
# - uses: smacke/submodule-checkout@v2
# if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '3.10.x'}}
# with:
# ssh-key: '${{ secrets.TEST_DATA_SECRET }}'
- name: Set up Python
uses: actions/setup-python@v1
with:
Expand All @@ -45,10 +45,10 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: |
pytest --cov-config=.coveragerc --cov-report=xml:cov.xml --cov=ffsubsync -v -m 'not integration' tests/
- name: Run integration tests with pytest
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '3.10.x'}}
run: |
INTEGRATION=1 pytest --cov-config=.coveragerc --cov-report=xml:cov.xml --cov=ffsubsync -v -m 'integration' tests/
# - name: Run integration tests with pytest
# if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '3.10.x'}}
# run: |
# INTEGRATION=1 pytest --cov-config=.coveragerc --cov-report=xml:cov.xml --cov=ffsubsync -v -m 'integration' tests/
- name: Upload coverage report
if: matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v1
Expand Down

0 comments on commit df47244

Please sign in to comment.