Split local and CI testing
This commit is contained in:
parent
f3dfedeb2a
commit
335d387136
2 changed files with 7 additions and 3 deletions
|
@ -8,4 +8,4 @@ dependencies:
|
|||
|
||||
test:
|
||||
override:
|
||||
- scripts/runtests
|
||||
- scripts/runtests CI
|
||||
|
|
|
@ -7,5 +7,9 @@ export PATH=env/bin:${PATH}
|
|||
flake8 project --ignore=E128,E501
|
||||
echo ">> Flake8 Tests Completed"
|
||||
|
||||
echo ">> Installing CLI..."
|
||||
bash scripts/build
|
||||
if [ "$1" == "CI" ]; then
|
||||
echo ">> Installing CLI..."
|
||||
bash scripts/build
|
||||
fi
|
||||
|
||||
echo ">> All Tests Passed!"
|
||||
|
|
Reference in a new issue