more fixes

This commit is contained in:
dawoodkhan82 2019-06-18 13:23:01 -07:00
parent 7015e79d22
commit b03581c684
2 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,7 @@ jobs:
- run:
command: |
. venv/bin/activate
cd test
python3 -m unittest
- store_artifacts:
path: test-reports/

View File

@ -23,7 +23,7 @@ class TestWebcam(unittest.TestCase):
def test_path_exists(self):
inp = inputs.Webcam()
path = inputs.BASE_INPUT_INTERFACE_JS_PATH.format(inp.get_name())
self.assertFalse(os.path.exists(os.path.join(PACKAGE_NAME, path))) # Note implemented yet.
self.assertFalse(os.path.exists(os.path.join('..', PACKAGE_NAME, path))) # Note implemented yet.
def test_preprocessing(self):
inp = inputs.Webcam()