Skip to content

Commit

Permalink
Remove checking rmeote data
Browse files Browse the repository at this point in the history
  • Loading branch information
DunklesArchipel committed Mar 23, 2024
1 parent da4919b commit 5caf292
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,10 @@ concurrency:
jobs:
test:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.remote-data == 'remote' }}
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python: ["3.9", "3.10"]
remote-data: [""]
include:
- os: "ubuntu-latest"
python: "3.10"
# This leg of the tests runs doctests against the data that is
# currently in the echemdb repository. This test might fail when
# substantial changes have been introduced with this run that have
# not been published in the echemdb repository yet.
remote-data: 'remote'
steps:
- uses: actions/checkout@v2
with: { submodules: recursive }
Expand All @@ -41,4 +31,4 @@ jobs:
- name: doctest
shell: bash -l {0}
run: |
pytest -n auto --doctest-plus ${{ matrix.remote-data == 'remote' && '--remote-data' || '' }} --doctest-modules website
pytest -n auto --doctest-plus --doctest-modules website

0 comments on commit 5caf292

Please sign in to comment.