From 2cb56c50c5f0f69e9f364093605e3fb38a447abb Mon Sep 17 00:00:00 2001 From: Andy Date: Sun, 10 Jun 2018 14:57:24 -0700 Subject: [PATCH] added .travis.yml --- .gitignore | 1 + .travis.yml | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 .travis.yml diff --git a/.gitignore b/.gitignore index 09a3900..6b8406c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *.pyc .* /svgpathtools/nonunittests +!.travis.yml !/.gitignore \ No newline at end of file diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..3fa9427 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: python +python: + - "2.7" + - "3.6" +install: + - pip install numpy svgwrite +script: + - python -m unittest discover test