Add .travis.yml for Travis-CI support.

This commit is contained in:
Davide Casale
2023-03-09 18:06:04 +01:00
parent e99230b0cb
commit 87bc19da48

11
.travis.yml Normal file
View File

@@ -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