Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
anders-kiaer committed Jan 29, 2024
1 parent 591db81 commit 22a4e50
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/webviz-core-components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: 🐍 Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.8 # For compiling the JavaScript part we need dash<2.5, which is not supported on recent versions of Python

- name: ℹ️ Node and npm versions
run: |
Expand Down
2 changes: 1 addition & 1 deletion tests/test_color_scales.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ def test_colorscale(dash_duo):

dash_duo.start_server(app)

assert dash_duo.get_logs() == [], "browser console should contain no error"
assert dash_duo.get_logs() is None, "browser console should contain no error"
2 changes: 1 addition & 1 deletion tests/test_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ def test_container_placeholder(dash_duo):

dash_duo.start_server(app)

assert dash_duo.get_logs() == [], "browser console should contain no error"
assert dash_duo.get_logs() is None, "browser console should contain no error"
2 changes: 1 addition & 1 deletion tests/test_plugin_placeholder.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ def test_plugin_placeholder(dash_duo):

dash_duo.start_server(app)

assert dash_duo.get_logs() == [], "browser console should contain no error"
assert dash_duo.get_logs() is None, "browser console should contain no error"

0 comments on commit 22a4e50

Please sign in to comment.