Rename test -> tests (#66)

* rename test -> tests

* re-add ignored tests
This commit is contained in:
JP Smith
2017-03-13 14:06:36 -05:00
committed by GitHub
parent dd24878724
commit ca0bee2377
81 changed files with 7 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/bash
coverage erase
coverage run -m unittest discover test/ 2>&1 >/dev/null | tee travis_tests.log
coverage run -m unittest discover tests/ 2>&1 >/dev/null | tee travis_tests.log
DID_OK=$(tail -n1 travis_tests.log)
RV=1
if [[ "${DID_OK}" == OK* ]]