[Tests] Changing pytest -> pytest-3

This commit is contained in:
Salvador E. Tropea 2022-08-11 19:21:30 -03:00
parent 4447b5b306
commit 8db4396580
3 changed files with 4 additions and 4 deletions

2
g1.sh
View File

@ -1,3 +1,3 @@
#!/bin/sh
# Fast tests
pytest -v --durations=0 -m "not slow" -n 2 --test_dir=output
pytest-3 -v --durations=0 -m "not slow" -n 2 --test_dir=output

4
g2.sh
View File

@ -1,5 +1,5 @@
#!/bin/sh
# Eeschema tests
pytest -v --durations=0 -m "eeschema" --test_dir=output
pytest-3 -v --durations=0 -m "eeschema" --test_dir=output
# KiCad2Step tests and others
pytest -v --durations=0 -m "slow and (not (pcbnew or eeschema))" --test_dir=output
pytest-3 -v --durations=0 -m "slow and (not (pcbnew or eeschema))" --test_dir=output

2
g3.sh
View File

@ -1,3 +1,3 @@
#!/bin/sh
# PCBnew tests
pytest -v --durations=0 -m "pcbnew" --test_dir=output
pytest-3 -v --durations=0 -m "pcbnew" --test_dir=output