Skip to content

Commit

Permalink
add pypi-latest test
Browse files Browse the repository at this point in the history
  • Loading branch information
IAlibay authored Jul 25, 2023
1 parent e51be84 commit a74b075
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/gh-ci-cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ jobs:
conda-latest-release:
# A set of runner to check that the latest conda release works as expected
if: "github.repository == 'MDAnalysis/mdanalysis'"
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, macos-latest, windows-latest]
timeout-minutes: 60
strategy:
fail-fast: false
Expand Down Expand Up @@ -240,3 +240,25 @@ jobs:
- name: run_tests
run: |
pytest -n auto --pyargs MDAnalysisTests
pypi-latest-release:
# A set of runner to check that the latest conda release works as expected
if: "github.repository == 'MDAnalysis/mdanalysis'"
runs-on: [ubuntu-latest, macos-latest, windows-latest]
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: install_mdanalysis
run: |
pip install mdanalysis mdanalysistests pytest-xdist
- name: run_tests
run: |
pytest -n auto --pyargs MDAnalysisTests

0 comments on commit a74b075

Please sign in to comment.