Skip to content

Commit 0a36a2a

Browse files
committed
don't cache scratch
1 parent a848cc3 commit 0a36a2a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

circle.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ dependencies:
77
- "~/docker"
88
- "~/examples"
99
- "~/.apt-cache"
10-
- "~/scratch"
1110

1211
pre:
1312
# Let CircleCI cache the apt archive
@@ -51,8 +50,8 @@ test:
5150

5251
post:
5352
- bash docker/circleci/teardown.sh
54-
- bash <(curl -s https://codecov.io/bash) -f ~/scratch/nosetest*.xml -t ac172a50-8e66-42e5-8822-5373fcf54686 -cF unittests
55-
- bash <(curl -s https://codecov.io/bash) -f ~/scratch/smoketest*.xml -t ac172a50-8e66-42e5-8822-5373fcf54686 -cF smoketests
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
5655

5756
general:
5857
artifacts:

docker/circleci/teardown.sh

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

99
mkdir -p ${CIRCLE_TEST_REPORTS}/nose
1010
xunitmerge ~/scratch/nosetests*.xml ~/scratch/smoketest*.xml ${CIRCLE_TEST_REPORTS}/nose/${CIRCLE_PROJECT_REPONAME}.xml
11-
sudo mv ~/scratch/coverage*.xml ~/
11+
sudo mv ~/scratch/*.xml ~/
1212
mkdir -p ~/docs
1313
sudo mv ~/scratch/docs/* ~/docs/
1414
mkdir -p ~/logs

0 commit comments

Comments
 (0)