diff --git a/.travis.yml b/.travis.yml index 479b4a2..e747d5e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,2 +1,6 @@ language: python +# command to install dependencies +install: + - pip install -r requirements.txt +# command to run tests script: python src/test.py \ No newline at end of file diff --git a/src/main.py b/src/main.py index 7cbb768..0703f15 100644 --- a/src/main.py +++ b/src/main.py @@ -62,3 +62,5 @@ def error(code): if __name__ == "__main__": app.run(debug=True, use_reloader=True) +# new line +# new line 2 \ No newline at end of file