From 10f2ff0765257ae613084eeb11a8db9ae22ba293 Mon Sep 17 00:00:00 2001 From: Kairav Pithadia <47715599+kairavkkp@users.noreply.github.com> Date: Fri, 31 Jul 2020 22:42:00 +0530 Subject: [PATCH] Create .travis.yml --- .travis.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0532ae5 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: python +python: + - "2.7" + - "3.4" + - "3.5" + - "3.6" # current default Python on Travis CI + - "3.7" + - "3.8" + - "3.8-dev" # 3.8 development branch + - "nightly" # nightly build +# command to install dependencies +install: + - pip install -r requirements.txt +# command to run tests +script: + - python setup.py || python3 setup.py