Skip to content

Commit 7cae63b

Browse files
committed
simplify things
1 parent 0a36a2a commit 7cae63b

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

circle.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ dependencies:
2525
timeout: 1600
2626
- mkdir -p ~/docker; docker save nipype/nipype_test:py27 > ~/docker/image.tar :
2727
timeout: 1600
28-
- pip install xunitmerge
2928

3029
test:
3130
override:
@@ -50,15 +49,10 @@ test:
5049

5150
post:
5251
- bash docker/circleci/teardown.sh
53-
- bash <(curl -s https://codecov.io/bash) -f ~/nosetest*.xml -t ac172a50-8e66-42e5-8822-5373fcf54686 -cF unittests
54-
- bash <(curl -s https://codecov.io/bash) -f ~/smoketest*.xml -t ac172a50-8e66-42e5-8822-5373fcf54686 -cF smoketests
52+
- bash <(curl -s https://codecov.io/bash) -f ${CIRCLE_TEST_REPORTS}/nose/coverage*.xml -t ac172a50-8e66-42e5-8822-5373fcf54686 -F unittests
53+
- bash <(curl -s https://codecov.io/bash) -f ${CIRCLE_TEST_REPORTS}/nose/smoketest*.xml -t ac172a50-8e66-42e5-8822-5373fcf54686 -F smoketests
5554

5655
general:
5756
artifacts:
5857
- "~/docs"
5958
- "~/logs"
60-
- "~/coverage_py27.xml"
61-
- "~/coverage_py35.xml"
62-
- "~/nosetests_py27.xml"
63-
- "~/nosetests_py35.xml"
64-
- "~/scratch"

docker/circleci/teardown.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ set -u
77
set -e
88

99
mkdir -p ${CIRCLE_TEST_REPORTS}/nose
10-
xunitmerge ~/scratch/nosetests*.xml ~/scratch/smoketest*.xml ${CIRCLE_TEST_REPORTS}/nose/${CIRCLE_PROJECT_REPONAME}.xml
11-
sudo mv ~/scratch/*.xml ~/
10+
sudo mv ~/scratch/*.xml ${CIRCLE_TEST_REPORTS}/nose
1211
mkdir -p ~/docs
1312
sudo mv ~/scratch/docs/* ~/docs/
1413
mkdir -p ~/logs

0 commit comments

Comments
 (0)