Commit c646bec
ci(repo): fix tox/pytest execution args (#562)
Seems like only top level tests were executed in CI.
An alternative would be to remove the default "tests" in the root
pyproject.toml tox config from
```
commands = [["pytest", { replace = "posargs", default = ["tests"], extend = true }]]
```
to
```
commands = [["pytest", { replace = "posargs", default = [], extend = true }]]
```
but then that would do pytest auto discovery, which triggers testing
_everything_ all the time.
---------
Co-authored-by: Florian R. Hölzlwimmer <git.ich@frhoelzlwimmer.de>1 parent 9060876 commit c646bec
3 files changed
Lines changed: 3 additions & 11 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
283 | 283 | | |
284 | 284 | | |
285 | 285 | | |
286 | | - | |
| 286 | + | |
287 | 287 | | |
288 | 288 | | |
289 | 289 | | |
| |||
335 | 335 | | |
336 | 336 | | |
337 | 337 | | |
338 | | - | |
| 338 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
36 | | - | |
37 | | - | |
38 | | - | |
39 | | - | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | 35 | | |
44 | 36 | | |
45 | 37 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
196 | 196 | | |
197 | 197 | | |
198 | 198 | | |
199 | | - | |
| 199 | + | |
200 | 200 | | |
201 | 201 | | |
202 | 202 | | |
| |||
0 commit comments