diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d727ca7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: python + +python: 3.6 + +install: + - pip install -r requirements.txt + +script: + - coverage run test.py + +after_success: + - codecov \ No newline at end of file diff --git a/add b/add new file mode 100644 index 0000000..e69de29 diff --git a/requirements.txt b/requirements.txt index eee7609..2fb237f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ -Django==2.2.10 +codecov==2.1.7 +Django==2.2.13 Pillow>=6.2.2 Unipath==1.1 python-decouple==3.1 diff --git a/resources/static/images/Thumbs.db b/resources/static/images/Thumbs.db deleted file mode 100644 index 53a6202..0000000 Binary files a/resources/static/images/Thumbs.db and /dev/null differ diff --git a/test.py b/test.py new file mode 100644 index 0000000..68cee19 --- /dev/null +++ b/test.py @@ -0,0 +1,8 @@ +import unittest + +class TestMethods(unittest.TestCase): + def test_add(self): + self.assertEqual(True, True) + +if __name__ == '__main__': + unittest.main()