File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 41
41
cd dash-main && pip install -e .[dev,testing] --progress-bar off && cd ..
42
42
cd dash-main/\@plotly/dash-generator-test-component-nested && npm ci && npm run build && sudo R CMD INSTALL . && cd ../../..
43
43
cd dash-main/\@plotly/dash-generator-test-component-standard && npm ci && npm run build && sudo R CMD INSTALL . && cd ../../..
44
- sudo Rscript -e 'library(dashGeneratorTestComponentNested); print(dgtc_nestedMyComponent )'
45
- sudo Rscript -e 'library(dashGeneratorTestComponentStandard); print(dgtc_standardMyComponent )'
44
+ sudo Rscript -e 'library(dashGeneratorTestComponentNested); print(dgtc_nestedMyNestedComponent )'
45
+ sudo Rscript -e 'library(dashGeneratorTestComponentStandard); print(dgtc_standardMyStandardComponent )'
46
46
export PATH=$PATH:/home/circleci/.local/bin/
47
47
pytest --nopercyfinalize --junitxml=test-reports/dashr.xml tests/integration/
48
48
- store_artifacts :
Original file line number Diff line number Diff line change 10
10
11
11
app <- Dash$new()
12
12
app$layout(htmlDiv(list(
13
- dgtc_standardMyComponent (id="standard", value="Standard"),
14
- dgtc_nestedMyComponent (id="nested", value="Nested")
13
+ dgtc_standardMyStandardComponent (id="standard", value="Standard"),
14
+ dgtc_nestedMyNestedComponent (id="nested", value="Nested")
15
15
)))
16
16
17
17
app$run_server()
You can’t perform that action at this time.
0 commit comments