make circle CI aware of the testing requirments file
This commit is contained in:
parent
aaafe92c5f
commit
02e6d5b46c
|
@ -61,13 +61,13 @@ jobs:
|
||||||
key: v1-specs-repo-{{ .Branch }}-{{ .Revision }}
|
key: v1-specs-repo-{{ .Branch }}-{{ .Revision }}
|
||||||
- restore_cached_venv:
|
- restore_cached_venv:
|
||||||
venv_name: v1-pyspec
|
venv_name: v1-pyspec
|
||||||
reqs_checksum: '{{ checksum "test_libs/pyspec/requirements.txt" }}'
|
reqs_checksum: '{{ checksum "test_libs/pyspec/requirements.txt" }}-{{ checksum "test_libs/pyspec/requirements-testing.txt" }}'
|
||||||
- run:
|
- run:
|
||||||
name: Install pyspec requirements
|
name: Install pyspec requirements
|
||||||
command: make install_test
|
command: make install_test
|
||||||
- save_cached_venv:
|
- save_cached_venv:
|
||||||
venv_name: v1-pyspec
|
venv_name: v1-pyspec
|
||||||
reqs_checksum: '{{ checksum "test_libs/pyspec/requirements.txt" }}'
|
reqs_checksum: '{{ checksum "test_libs/pyspec/requirements.txt" }}-{{ checksum "test_libs/pyspec/requirements-testing.txt" }}'
|
||||||
venv_path: ./test_libs/pyspec/venv
|
venv_path: ./test_libs/pyspec/venv
|
||||||
test:
|
test:
|
||||||
docker:
|
docker:
|
||||||
|
@ -78,7 +78,7 @@ jobs:
|
||||||
key: v1-specs-repo-{{ .Branch }}-{{ .Revision }}
|
key: v1-specs-repo-{{ .Branch }}-{{ .Revision }}
|
||||||
- restore_cached_venv:
|
- restore_cached_venv:
|
||||||
venv_name: v1-pyspec
|
venv_name: v1-pyspec
|
||||||
reqs_checksum: '{{ checksum "test_libs/pyspec/requirements.txt" }}'
|
reqs_checksum: '{{ checksum "test_libs/pyspec/requirements.txt" }}-{{ checksum "test_libs/pyspec/requirements-testing.txt" }}'
|
||||||
- run:
|
- run:
|
||||||
name: Run py-tests
|
name: Run py-tests
|
||||||
command: make citest
|
command: make citest
|
||||||
|
|
Loading…
Reference in New Issue