more command fixes

Signed-off-by: Adam Hill <adam@diginc.us>
This commit is contained in:
Adam Hill 2019-12-31 16:57:33 -06:00
parent 18b1f446ab
commit 0c5468ba29
No known key found for this signature in database
GPG Key ID: 2193804FCA429855
1 changed files with 3 additions and 3 deletions

View File

@ -24,11 +24,11 @@ version: 2
fi
# generate and build dockerfile
- ./Dockerfile.py --arch=${CIRCLE_JOB} -v
- docker images
./Dockerfile.py --arch=${CIRCLE_JOB} -v
docker images
# run docker build & tests
# 2 parallel max b/c race condition with docker fixture (I think?)
- py.test -vv -n 2 -k "${CIRCLE_JOB}" ./test/
py.test -vv -n 2 -k "${CIRCLE_JOB}" ./test/
# push image
# [[ "$CIRCLE_PR_NUMBER" == "" ]] && sudo docker push $IMAGE