tests.sh 84 B

12345678910
  1. #!/bin/bash
  2. set -eu
  3. if [ $# -lt 1 ]
  4. then
  5. pytest -v -x
  6. else
  7. pytest "$@"
  8. fi