9 lines
105 B
Plaintext
9 lines
105 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# Run python3 tests
|
||
|
|
||
|
if [ -d venv ]; then
|
||
|
source venv/bin/activate
|
||
|
fi
|
||
|
python3 -m pytest
|