7 lines
206 B
Bash
Executable File
7 lines
206 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
pytest --ignore=tests/e2e/ /workspace/axolotl/tests/
|
|
pytest -n1 --dist loadfile -v /workspace/axolotl/tests/e2e/patched/
|
|
pytest --ignore=tests/e2e/patched/ /workspace/axolotl/tests/e2e/
|