Develop #344
This file contains hidden or 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: NEAT Unit Tests | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| detailed_test_execution: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: mamba-org/setup-micromamba@v1 | |
| with: | |
| environment-file: environment.yml | |
| environment-name: test_neat | |
| cache-environment: true | |
| - name: Run unit tests (pytest) | |
| run: | | |
| micromamba run -n test_neat poetry install | |
| micromamba run -n test_neat pytest -q tests |