From 1745cecb2cee2eb107d2dfe181c96bbdf8155cae Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Mon, 22 Jun 2020 19:09:42 -0700 Subject: [PATCH] try using poetry on travis --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index b01b887c..74ccbd36 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,9 +7,9 @@ branches: except: - python3 install: - - pip install --upgrade pytest - - pip install typing coverage pytest pytest-cov cryptography idna requests requests-toolbelt trio curio + - curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python + - ~/.poetry/bin/poetry install script: - - pytest --cov=dns --cov-report=xml:coverage.xml + - ~/.poetry/bin/poetry run pytest --cov=dns --cov-report=xml:coverage.xml after_success: - bash <(curl -s https://codecov.io/bash) -- 2.47.3