Skip to content

Commit a481b94

Browse files
committed
test.*->citest.* - and add simple local "test" script
1 parent dc837bd commit a481b94

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
name: 🐍 Python Unit Tests & ☕ JS Unit Tests
6060
command: |
6161
. venv/bin/activate
62-
npm run test.unit
62+
npm run citest.unit
6363
6464
lint-unit-36:
6565
<<: *lint-unit
@@ -349,7 +349,7 @@ jobs:
349349
name: 🧪 Run Integration Tests
350350
command: |
351351
. venv/bin/activate
352-
npm run test.integration
352+
npm run citest.integration
353353
- store_artifacts:
354354
path: test-reports
355355
- store_test_results:

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@
2424
"lint": "run-s private::lint.*",
2525
"setup-tests.py": "run-s private::test.py.deploy-*",
2626
"setup-tests.R": "run-s private::test.R.deploy-*",
27-
"test.integration": "run-s setup-tests.py private::test.integration-*",
28-
"test.unit": "run-s private::test.unit-**"
27+
"citest.integration": "run-s setup-tests.py private::test.integration-*",
28+
"citest.unit": "run-s private::test.unit-**",
29+
"test": "pytest && cd dash-renderer && npm run test"
2930
},
3031
"devDependencies": {
3132
"husky": "4.2.3"

0 commit comments

Comments
 (0)