|
10 | 10 | "private::lint.pylint-dash": "PYLINTRC=${PYLINTRC:=.pylintrc37} && pylint dash setup.py --rcfile=$PYLINTRC",
|
11 | 11 | "private::lint.pylint-tests": "PYLINTRC=${PYLINTRC:=.pylintrc37} && pylint tests/unit tests/integration -d all --rcfile=$PYLINTRC",
|
12 | 12 | "private::lint.renderer": "cd dash-renderer && npm run lint",
|
13 |
| - "private::test.setup-nested": "cd \\@plotly/dash-generator-test-component-nested && npm ci && npm run build && pip install -e .", |
14 |
| - "private::test.setup-standard": "cd \\@plotly/dash-generator-test-component-standard && npm ci && npm run build && pip install -e .", |
| 13 | + "private::test.setup-nested": "cd \\@plotly/dash-generator-test-component-nested && npm ci && npm run build", |
| 14 | + "private::test.setup-standard": "cd \\@plotly/dash-generator-test-component-standard && npm ci && npm run build", |
| 15 | + "private::test.py.deploy-nested": "npm run private::test.setup-nested && cd \\@plotly/dash-generator-test-component-nested && pip install -e .", |
| 16 | + "private::test.py.deploy-standard": "npm run private::test.setup-standard && cd \\@plotly/dash-generator-test-component-standard && pip install -e .", |
| 17 | + "private::test.R.deploy-nested": "npm run private::test.setup-nested && cd \\@plotly/dash-generator-test-component-nested && sudo R CMD INSTALL .", |
| 18 | + "private::test.R.deploy-standard": "npm run private::test.setup-standard && cd \\@plotly/dash-generator-test-component-standard && sudo R CMD INSTALL .", |
15 | 19 | "private::test.unit-dash": "PYTHONPATH=~/dash/tests/assets pytest tests/unit",
|
16 | 20 | "private::test.unit-renderer": "cd dash-renderer && npm run test",
|
17 | 21 | "private::test.integration-dash": "TESTFILES=$(circleci tests glob \"tests/integration/**/test_*.py\" | circleci tests split --split-by=timings) && pytest --headless --nopercyfinalize --junitxml=test-reports/junit_intg.xml ${TESTFILES}",
|
18 | 22 | "format": "run-s private::format.*",
|
19 | 23 | "initialize": "run-s private::initialize.*",
|
20 | 24 | "lint": "run-s private::lint.*",
|
21 |
| - "setup-tests": "run-s private::test.setup-*", |
22 |
| - "test.integration": "run-s setup-tests private::test.integration-*", |
| 25 | + "setup-tests.py": "run-s private::test.py.deploy-*", |
| 26 | + "setup-tests.R": "run-s private::test.R.deploy-*", |
| 27 | + "test.integration": "run-s setup-tests.py private::test.integration-*", |
23 | 28 | "test.unit": "run-s private::test.unit-**"
|
24 | 29 | },
|
25 | 30 | "devDependencies": {
|
|
0 commit comments