6 lines
114 B
Bash
6 lines
114 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -uo pipefail
|
||
|
|
||
|
echo "Running Python checks for builder system"
|
||
|
pytest ./tests/python_build
|