diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..6d31803 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: python +python: 3.5 + +install : + - pip install git+https://github.com/aerospaceresearch/orbitdeterminator + - pip install -r requirements.txt + +script : pytest diff --git a/test_travis.py b/test_travis.py new file mode 100644 index 0000000..f0c80a5 --- /dev/null +++ b/test_travis.py @@ -0,0 +1,6 @@ +import pytest + +def test_travis(): + given = 1 + expected = 1 + assert given == expected