We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cbef3b commit 7316709Copy full SHA for 7316709
2 files changed
.travis.yml
@@ -1,7 +1,8 @@
1
language: python
2
-install: true
3
os:
4
- linux
+install: true
5
+script: python tests.py
6
before_deploy:
7
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then make funscripting.zip; fi
8
deploy:
tests.py
@@ -0,0 +1,8 @@
+import unittest
+
+class TestFoo(unittest.TestCase):
+ def test_true(self):
+ self.assertEqual('foo'.upper(), 'FOO')
+if __name__ == '__main__':
+ unittest.main()
0 commit comments