diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..73e16b1b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,43 @@ +language: python + +sudo: false + +install: + - travis_retry python setup.py install + - pip install coveralls + +jobs: + include: + - name: "Tests: python 3.5" + python: 3.5 + script: + - coverage run --source=betfairlightweight setup.py test + - name: "Tests: python 3.6" + python: 3.6 + script: + - coverage run --source=betfairlightweight setup.py test + - name: "Tests: python 3.7" + python: 3.7 + dist: xenial + script: + - coverage run --source=betfairlightweight setup.py test + - name: "Tests: python 3.8" + python: 3.8 + dist: xenial + script: + - coverage run --source=betfairlightweight setup.py test + - name: "Tests: python 3.9" + python: 3.9 + dist: xenial + script: + - coverage run --source=betfairlightweight setup.py test + - name: "Lint: python 3.7" + python: 3.7 + dist: xenial + install: + - pip install black + script: + - black --check --diff . + +after_success: + coveralls diff --git a/HISTORY.rst b/HISTORY.rst index eb87c7ca..fc923ca2 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -11,7 +11,7 @@ Release History - #369 Output streaming matched backs/lays - #370 Session timeout updated to 24hrs for international exchange - License update -- Remove travis.yml and build.sh +- Removed build.sh 2.11.1 (2020-12-26) +++++++++++++++++++