This repository was archived by the owner on Jun 3, 2024. It is now read-only.
File tree 3 files changed +12496
-4759
lines changed 3 files changed +12496
-4759
lines changed Original file line number Diff line number Diff line change 19
19
command : echo $CIRCLE_JOB > circlejob.txt
20
20
21
21
- restore_cache :
22
- key : deps1-{{ .Branch }}-{{ checksum "requirements-dev.txt" }}-{{ checksum "package.json" }}-{{ checksum ".circleci/config.yml" }}-{{ checksum "circlejob.txt" }}
22
+ key : deps1-{{ .Branch }}-{{ checksum "requirements-dev.txt" }}-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}-{{ checksum " .circleci/config.yml" }}-{{ checksum "circlejob.txt" }}
23
23
24
24
- run :
25
25
name : Install dependencies
30
30
npm install --ignore-scripts
31
31
32
32
- save_cache :
33
- key : deps1-{{ .Branch }}-{{ checksum "requirements-dev.txt" }}-{{ checksum "package.json" }}-{{ checksum ".circleci/config.yml" }}-{{ checksum "circlejob.txt" }}
33
+ key : deps1-{{ .Branch }}-{{ checksum "requirements-dev.txt" }}-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}-{{ checksum " .circleci/config.yml" }}-{{ checksum "circlejob.txt" }}
34
34
paths :
35
35
- " venv"
36
36
- " node_modules"
@@ -41,10 +41,13 @@ jobs:
41
41
npm run build:js
42
42
npm run build:py
43
43
44
+ - run :
45
+ name : npm test
46
+ command : npm test
47
+
44
48
- run :
45
49
name : Run tests
46
50
command : |
47
- npm run test
48
51
. venv/bin/activate
49
52
python --version
50
53
python -m unittest test.test_integration
You can’t perform that action at this time.
0 commit comments