7 lines
72 B
Text
7 lines
72 B
Text
|
#!/usr/bin/env sh
|
||
|
|
||
|
set -e # Abort on failure
|
||
|
set -x
|
||
|
|
||
|
python3 -m pytest
|