Skip to content

Commit 6ee0633

Browse files
author
Ryan Patrick Kyle
committed
fix: remove html, core pkgs from tests
1 parent bd6080b commit 6ee0633

19 files changed

+1
-51
lines changed

tests/integration/callbacks/test_handle_stop.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
app = """
44
library(dash)
5-
library(dashHtmlComponents)
6-
library(dashCoreComponents)
75
86
app <- Dash$new()
97

tests/integration/callbacks/test_multiple_outputs.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
app = """
44
library(dash)
5-
library(dashHtmlComponents)
6-
library(dashCoreComponents)
75
library(plotly)
86
library(dashTable)
97

tests/integration/callbacks/test_multiple_outputs_return_callback.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
app_returning_component = """
22
library(dash)
3-
library(dashHtmlComponents)
4-
library(dashCoreComponents)
53
64
app <- Dash$new()
75
app$layout(

tests/integration/callbacks/test_no_update.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
app = """
55
library(dash)
6-
library(dashHtmlComponents)
7-
library(dashCoreComponents)
86
97
app <- Dash$new()
108

tests/integration/callbacks/test_no_update_multiple.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
app = """
44
library(dash)
5-
library(dashCoreComponents)
6-
library(dashHtmlComponents)
75
86
app <- Dash$new()
97

tests/integration/callbacks/test_pattern_matching.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
all_app = """
22
library(dash)
3-
library(dashHtmlComponents)
4-
library(dashCoreComponents)
53
64
app <- Dash$new()
75
@@ -55,9 +53,6 @@
5553

5654
allsmaller_app = """
5755
library(dash)
58-
library(dashCoreComponents)
59-
library(dashHtmlComponents)
60-
6156
6257
df <- read.csv('https://raw.githubusercontent.com/plotly/datasets/master/gapminder2007.csv', stringsAsFactors = FALSE)
6358
@@ -130,9 +125,6 @@
130125

131126
match_app = """
132127
library(dash)
133-
library(dashCoreComponents)
134-
library(dashHtmlComponents)
135-
136128
137129
app <- Dash$new()
138130
@@ -184,8 +176,6 @@
184176

185177
todo_app = """
186178
library(dash)
187-
library(dashCoreComponents)
188-
library(dashHtmlComponents)
189179
190180
app <- Dash$new()
191181
@@ -320,8 +310,6 @@
320310

321311
graphs_app = """
322312
library(dash)
323-
library(dashHtmlComponents)
324-
library(dashCoreComponents)
325313
library(plotly)
326314
327315
df <- read.csv(

tests/integration/clientside/test_clientside.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
app = """
55
library(dash)
6-
library(dashCoreComponents)
7-
library(dashHtmlComponents)
86
97
app <- Dash$new()
108

tests/integration/clientside/test_clientside_inline.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
app = """
55
library(dash)
6-
library(dashCoreComponents)
7-
library(dashHtmlComponents)
86
97
app <- Dash$new()
108

tests/integration/devtools/hard_reload/app.R

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11

22
library(dash)
3-
library(dashHtmlComponents)
4-
library(dashCoreComponents)
53
app <- Dash$new()
64

75
app$layout(htmlDiv(list(

tests/integration/devtools/test_hard_reload.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
app = os.path.join(os.path.dirname(__file__), "hard_reload/app.R")
66
changed_app = """
77
library(dash)
8-
library(dashHtmlComponents)
9-
library(dashCoreComponents)
108
app <- Dash$new()
119
1210
app$layout(htmlDiv(list(

0 commit comments

Comments
 (0)