From ae12961a80cd7331d8819abd0dc6598e798bda22 Mon Sep 17 00:00:00 2001 From: Andrei Date: Mon, 7 Oct 2019 01:18:36 +0300 Subject: [PATCH] Fix travis python version --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 42901e2..3fd3a8d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,12 +8,12 @@ language: python python: - "3.6" - "3.7" - - "3.8" + - "3.8-dev" # Install the codecov pip dependency install: - - pip install --upgrade pytest pytest-cov pytest-asyncio python3_anticaptcha + - pip install --upgrade pytest pytest-cov pytest-asyncio # Run the unit test script: - - pytest test.py --cov=./ + - pytest test.py --cov=./ -v