Commit 47cb387
authored
[MNT] added pytest run command for github CI (#686)
## Change(s)
in the `.github\workflows\pytest-tests.yml` file for `Run Unit Test via
Pytest` does not contain any workflow to run the actual `pytests`. the
jobs currently do:
- Setup Python virtual environment
- Install dependencies
- pre-commit check
added the job to run pytest at the end:
```yaml
- name: Run pytest
run: |
source venv/bin/activate
pytest src/tests
```
this should enable running the ctual pytests on github CI.
Solves #6841 parent 7f343f0 commit 47cb387
1 file changed
+5
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
0 commit comments