From 6f451245bf2e901b84ac5aff85cd9c3e729401b9 Mon Sep 17 00:00:00 2001 From: Merrick Rumel Date: Wed, 15 Jun 2022 11:29:44 -0400 Subject: [PATCH] Create .travis.yml --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..a901f5a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +sudo: false +language: python +python: + - "3.9" +# command to install dependencies +install: +before_script: + - pip install tox-travis + - pip install coveralls +# command to run tests +script: tox +after_success: coveralls \ No newline at end of file