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:
|
test:
|
||||||
override:
|
override:
|
||||||
- scripts/runtests
|
- scripts/runtests CI
|
||||||
|
|
|
@ -7,5 +7,9 @@ export PATH=env/bin:${PATH}
|
||||||
flake8 project --ignore=E128,E501
|
flake8 project --ignore=E128,E501
|
||||||
echo ">> Flake8 Tests Completed"
|
echo ">> Flake8 Tests Completed"
|
||||||
|
|
||||||
|
if [ "$1" == "CI" ]; then
|
||||||
echo ">> Installing CLI..."
|
echo ">> Installing CLI..."
|
||||||
bash scripts/build
|
bash scripts/build
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ">> All Tests Passed!"
|
||||||
|
|
Reference in a new issue