mirror of https://github.com/YosysHQ/yosys.git
5 lines
155 B
Bash
5 lines
155 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||
|
|
|
||
|
|
pytest -v -m "not smt and not rkt" "$SCRIPT_DIR" "$@"
|