From 87bc19da483c3d9dc0288ee34cd2100225455537 Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Thu, 9 Mar 2023 18:06:04 +0100 Subject: [PATCH] Add .travis.yml for Travis-CI support. --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..c9210f6 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: python +python: + - "3.8.0" +before_install: + - python -m pip install --upgrade pip +install: + - pip install -r dev-requirements.txt +script: + - python -m pylint bfxapi + - python -m mypy bfxapi + - python -m unittest bfxapi.tests