8 lines
123 B
Bash
Executable file
8 lines
123 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
git clone /data/git git
|
|
cd git
|
|
python3 -m pip install pytest-parallel
|
|
python3 -m pytest --workers auto
|
|
|