aiidateam / aiida-workgraph

Efficiently design and manage flexible workflows with AiiDA, featuring an interactive GUI, checkpoints, provenance tracking, and remote execution capabilities.
https://aiida-workgraph.readthedocs.io/en/latest/
MIT License
9 stars 5 forks source link

CI gets stuck when running whole test suite but works when run in individually #225

Open agoscinski opened 4 weeks ago

agoscinski commented 4 weeks ago

In the CI file had to

                pytest -v tests --cov --durations=0

split into

                pytest -m "not frontend and not backend" -v --cov --durations=0
                pytest -m backend -v --cov-append --durations=0
                pytest -m frontend -v --cov-append --durations=0

in RP #221 because the test suite got stuck when running the frontend tests.