Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more tests #81

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/full-stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

env:
OE_LICENSE: ${{ github.workspace }}/oe_license.txt
PYTEST_ARGS: -n logical --rootdir=. --durations=20
PYTEST_ARGS: -n logical --rootdir=. --durations=20 -v

steps:
- uses: actions/checkout@v4
Expand All @@ -54,6 +54,7 @@ jobs:
with:
repository: openforcefield/openff-fragmenter
path: openff-fragmenter
ref: no-duplicate-runslow

- name: Checkout SMIRNOFF plugins
uses: actions/checkout@v4
Expand Down Expand Up @@ -95,13 +96,18 @@ jobs:
openff-qcsubmit/ \
openff-units/ \
openff-models/ \
openff-fragmenter/ \
smirnoff-plugins/

- name: Run 'everything all at once' tests
run: |
python -m pytest $PYTEST_ARGS \
smirnoff-plugins/smirnoff_plugins/_tests/ \
openff-toolkit/openff/toolkit/_tests/ \
openff-interchange/openff/interchange/_tests/ \
openff-models/openff/models/_tests/ \
openff-units/openff/units/_tests/ \
Comment on lines +108 to +109
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is largely motivated by an attempt to ensure openforcefield/openff-units#84 doesn't cause any downstream effects we haven't already detected

openff-fragmenter/openff/fragmenter/_tests/ \
--ignore=smirnoff-plugins/smirnoff_plugins/_tests/handlers/test_nonbonded.py \
--ignore=openff-interchange/openff/interchange/_tests/unit_tests/components/test_packmol.py \
--ignore=openff-interchange/openff/interchange/_tests/test_parameter_plugins.py::test_force_field_custom_handler \
Expand Down
Loading