From b655b700e99f0fcdccb41e956f66f65e698714e2 Mon Sep 17 00:00:00 2001 From: Matt <32886639+mattlyon93@users.noreply.github.com> Date: Wed, 9 Sep 2020 21:32:31 +1000 Subject: Rename .travis.yaml to .travis.yml --- .travis.yaml | 13 ------------- .travis.yml | 13 +++++++++++++ 2 files changed, 13 insertions(+), 13 deletions(-) delete mode 100644 .travis.yaml create mode 100644 .travis.yml diff --git a/.travis.yaml b/.travis.yaml deleted file mode 100644 index 9dc2570..0000000 --- a/.travis.yaml +++ /dev/null @@ -1,13 +0,0 @@ -language: python -python: - - "3.5" - - "3.6" - - "3.7" - - "3.8" - -# command to install dependencies -install: - - pip install coverage coveralls . -# command to run tests -script: "coverage run -m unittest discover -s '.tests/' -p 'test_*.py'" -after_success: "coveralls" diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9dc2570 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: python +python: + - "3.5" + - "3.6" + - "3.7" + - "3.8" + +# command to install dependencies +install: + - pip install coverage coveralls . +# command to run tests +script: "coverage run -m unittest discover -s '.tests/' -p 'test_*.py'" +after_success: "coveralls" -- cgit v1.2.3