Selective PyTest workflow on Github actions #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run model and task related PyTests | ||
on: | ||
pull_request: | ||
paths: | ||
- 'matsciml/models/**' | ||
workflow_dispatch: | ||
jobs: | ||
init: | ||
uses: ./.github/workflows/make_env.yml | ||
models-pytest: | ||
steps: | ||
Check failure on line 11 in .github/workflows/run_pytest_models.yml GitHub Actions / Run model and task related PyTestsInvalid workflow file
|
||
- name: Run pytest in models | ||
run: | | ||
pytest -v -m "not lmdb and not slow and not remote_request" ./matsciml/models |