Skip to content

Commit

Permalink
ci: updates to get CI running correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
edaniszewski committed Mar 9, 2020
1 parent fa40c01 commit 644d27a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .jenkins
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,16 @@ pipeline {
}

stage('Test') {
agent {
label 'python-3.8'
}
environment {
CODECOV_TOKEN = credentials('codecov-token')
}
steps {
sh 'tox tests/unit'
sh 'codecov'
container('python') {
sh 'tox tests/unit'
}
}
}

Expand Down
6 changes: 5 additions & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ asynctest==0.13.0 # via -r test-requirements.in
attrs==19.3.0 # via aiohttp, pytest
chardet==3.0.4 # via aiohttp
coverage==5.0.3 # via pytest-cov
idna==2.9 # via yarl
idna-ssl==1.1.0 # via aiohttp
idna==2.9 # via idna-ssl, yarl
importlib-metadata==1.5.0 # via pluggy, pytest
mock==4.0.1 # via -r test-requirements.in
more-itertools==8.2.0 # via pytest
multidict==4.7.5 # via aiohttp, yarl
Expand All @@ -23,5 +25,7 @@ pytest-cov==2.8.1 # via -r test-requirements.in
pytest-mock==2.0.0 # via -r test-requirements.in
pytest==5.3.5 # via -r test-requirements.in, pytest-asyncio, pytest-cov, pytest-mock
six==1.14.0 # via packaging
typing-extensions==3.7.4.1 # via aiohttp
wcwidth==0.1.8 # via pytest
yarl==1.4.2 # via aiohttp
zipp==3.1.0 # via importlib-metadata
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ bison==0.1.2 # via synse_server (setup.py)
cachetools==4.0.0 # via google-auth
certifi==2019.11.28 # via httpx, kubernetes, requests
chardet==3.0.4 # via httpx, requests
contextvars==2.4 # via sniffio
google-auth==1.11.2 # via kubernetes
grpcio==1.27.2 # via synse-grpc, synse_server (setup.py)
h11==0.8.1 # via httpx
Expand All @@ -20,6 +21,7 @@ httptools==0.1.1 # via sanic
httpx==0.9.3 # via sanic
hyperframe==5.2.0 # via h2
idna==2.9 # via httpx, requests
immutables==0.11 # via contextvars
kubernetes==10.0.1 # via synse_server (setup.py)
multidict==4.7.5 # via sanic
oauthlib==3.1.0 # via requests-oauthlib
Expand Down

0 comments on commit 644d27a

Please sign in to comment.