3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-12-30 15:59:53 +00:00

Make run-test work from anywhere

This commit is contained in:
Gus Smith 2025-11-29 16:08:42 -08:00
parent fb8a1ad3bc
commit 62e666c2ed

View file

@ -1,2 +1,5 @@
#!/usr/bin/env bash
pytest -v -m "not smt and not rkt" "$@"
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
pytest -v -m "not smt and not rkt" "$SCRIPT_DIR" "$@"