diff options
-rw-r--r-- | .coveragerc | 2 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | azure-pipelines.yml | 4 | ||||
-rw-r--r-- | delivery_merge/conda.py | 1 |
4 files changed, 4 insertions, 5 deletions
diff --git a/.coveragerc b/.coveragerc index 5f51efe..3898458 100644 --- a/.coveragerc +++ b/.coveragerc @@ -13,4 +13,4 @@ omit = conftest.py setup.py tests/* - delivery_merge/tests/* + delivery_merge/cli/* @@ -1,7 +1,7 @@ # delivery_merge [](https://dev.azure.com/astroconda/delivery_merge/_build/latest?definitionId=1&branchName=master) - +[](https://codecov.io/gh/astroconda/delivery_merge) ## What does it do? diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ba3ad70..5e23940 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -25,8 +25,8 @@ steps: displayName: 'Install dependencies' - script: | - python -m pip install pytest pytest-azurepipelines pytest-cov codecov - pytest -v --cov=delivery_merge --cov-report=xml tests + python -m pip install pytest + pytest -v --cov=delivery_merge/ --cov-report=xml --junitxml=junit/results.xml tests/ codecov -t $codecov_token env: codecov_token: $(CODECOV_TOKEN) diff --git a/delivery_merge/conda.py b/delivery_merge/conda.py index 6dd29b1..0cea822 100644 --- a/delivery_merge/conda.py +++ b/delivery_merge/conda.py @@ -24,7 +24,6 @@ def ei_touch(): site_packages = os.path.join(root, *libsp) pthfile = os.path.join(site_packages, 'easy-install.pth') - print('PTHFILE = {}'.format(pthfile)) if not os.path.exists(pthfile): open(pthfile, 'w+').write('') |