Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tests] ensure we are running tests.contrib.test_utils #678

Merged
merged 5 commits into from Oct 25, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 15 additions & 0 deletions .circleci/config.yml
Expand Up @@ -149,6 +149,19 @@ jobs:
paths:
- ddtracerun.results

test_utils:
Kyle-Verhoog marked this conversation as resolved.
Show resolved Hide resolved
docker:
- *test_runner
steps:
- checkout
- *restore_cache_step
- run: tox -e '{py27,py34,py35,py36}-test_utils' --result-json /tmp/test_utils.results
- persist_to_workspace:
root: /tmp
paths:
- test_utils.results
- *save_cache_step

asyncio:
docker:
- *test_runner
Expand Down Expand Up @@ -809,6 +822,7 @@ workflows:
- futures
- boto
- ddtracerun
- test_utils
brettlangdon marked this conversation as resolved.
Show resolved Hide resolved
- asyncio
- pylons
- aiohttp
Expand Down Expand Up @@ -854,6 +868,7 @@ workflows:
- futures
- boto
- ddtracerun
- test_utils
- asyncio
- pylons
- aiohttp
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Expand Up @@ -31,6 +31,7 @@ envlist =
{py27,py34,py35,py36}-tracer
{py27,py34,py35,py36}-integration
{py27,py34,py35,py36}-ddtracerun
{py27,py34,py35,py36}-test_utils
# Integrations environments
aiobotocore_contrib-{py34,py35,py36}-aiobotocore{02,03,04}
aiohttp_contrib-{py34,py35,py36}-aiohttp{12,13,20,21,22}-aiohttp_jinja{012,013}-yarl
Expand Down