10 lines
110 B
Bash
Executable File
10 lines
110 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
echo travis_fold:start:pytest
|
|
|
|
python -m pytest -m offline
|
|
|
|
echo travis_fold:end:pytest
|