Skip to content
This repository has been archived by the owner on Nov 29, 2021. It is now read-only.

Commit

Permalink
Include travis yml (#6)
Browse files Browse the repository at this point in the history
* Include script to .travis.yml

* Add superbasic truthiness test
  • Loading branch information
Sey1000 authored and jerr0328 committed Aug 21, 2018
1 parent f1d8b84 commit 93efce7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: python
install:
- pip install -r requirements.txt
python:
- '3.6'
script:
- python snowing_test.py
12 changes: 12 additions & 0 deletions snowing_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import unittest
# import os
# import flask
# from isitsnowinginberlin import isitsnowinginberlin

class SnowingTests(unittest.TestCase):
def test_truthiness(self):
five = 5
self.assertEqual(five, 5)

if __name__ == "__main__":
unittest.main()

0 comments on commit 93efce7

Please sign in to comment.