diff --git a/.travis.yml b/.travis.yml index c800f90..b1f2ea6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,4 @@ language: go - sudo: false go: @@ -10,10 +9,13 @@ git: depth: 1 script: - - go test -v + - make test install: - go get -t ./... + - pyenv global 3.6.3 + - python3 -m pip install --user -r tests/requirements.txt + - go build branches: only: diff --git a/tests/requirements.txt b/tests/requirements.txt index b10e178..2049b8e 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1,3 +1,5 @@ -pytest ~= 3.6.0 -psutil ~= 5.4.0 -pytest-asyncio ~= 0.6.0 +aiohttp == 3.3.2 +psutil == 5.4.6 +pytest == 3.6.3 +pytest-aiohttp == 0.3.0 +pytest-asyncio == 0.8.0