diff options
| author | Bob Halley <halley@dnspython.org> | 2020-06-22 19:09:42 -0700 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2020-06-22 19:09:42 -0700 |
| commit | 1745cecb2cee2eb107d2dfe181c96bbdf8155cae (patch) | |
| tree | 7511630859d6ec9743c1d7166a11aaac8a34b76b | |
| parent | f5cd2be5bbd70ea27516d04592797e475baa589b (diff) | |
| download | dnspython-1745cecb2cee2eb107d2dfe181c96bbdf8155cae.tar.gz | |
try using poetry on travis
| -rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index b01b887..74ccbd3 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) |
