Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
abb453e
Selenium test mixin + move some tests to selenium from Cypress
Feb 18, 2020
68a2f3b
Dash w/ testing packages
Feb 18, 2020
9444756
explicit wait
Feb 18, 2020
188c87e
dt -> test
Feb 18, 2020
91a882a
no context for copy/paste
Feb 18, 2020
0e707da
add preconditions
Feb 18, 2020
7c7e8bd
3.6.9 -> 3.6?
Feb 18, 2020
2b7d33b
test -> mixin
Feb 18, 2020
a4dea44
consistent DashTable / DataTable usage
Feb 18, 2020
d3dc8f3
leading _ on private variables
Feb 18, 2020
52c1ac8
prefix private method with _
Feb 18, 2020
b834475
empty lines
Feb 18, 2020
37d40f4
disable percy run for test suite
Feb 18, 2020
a402a11
-new
Feb 18, 2020
bdc2563
rewrite 3 basic tests
Feb 19, 2020
f0fb421
selenium support for tests with dblclick in table
Feb 20, 2020
4001b67
cypress -> selenium column sort / row select / row delete tests
Feb 20, 2020
9169ab8
cypress -> selenium, cell delete tests
Feb 20, 2020
58a8f5c
remove 8085
Feb 20, 2020
cd26069
cypress -> selenium, pagination tests
Feb 20, 2020
89df40d
wrap paging ops in a paging facade
Feb 20, 2020
a051880
cypress -> selenium, (non-)blocking edits
Feb 21, 2020
5f8c0ee
paging
Feb 21, 2020
425a995
remove print statements
Feb 21, 2020
69fb619
cypress --> selenium; derived props
Feb 21, 2020
0687326
remove legacy server tests
Feb 21, 2020
5b51a02
remove legacy server tests take 2
Feb 21, 2020
57319bc
Merge branch 'dev' into 582-new-selenium-tests
Marc-Andre-Rivet Feb 28, 2020
3d9cf37
Black & Flake8 on all python files
Feb 28, 2020
ea38a86
mark skip instead of commenting out tests
Feb 28, 2020
f84e8a0
dash dev branch
Feb 28, 2020
ebb6ca5
lint
Feb 28, 2020
0455339
import pytest
Feb 28, 2020
225755f
black
Feb 28, 2020
854276e
copy/paste with hold/send_keys
Feb 28, 2020
6c36f1d
remove DataTableContext, refactor
Feb 28, 2020
73092c7
refactor table.cell, table.column, table.row to select target prior t…
Feb 28, 2020
fb13a42
streamline column usage (row=0)
Feb 28, 2020
534c7b2
refactor paging facade
Feb 29, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
. venv/bin/activate
pip install -r dev-requirements.txt --quiet
git clone --depth 1 git@github.com:plotly/dash.git dash-main
pip install -e ./dash-main[dev] --quiet
pip install -e ./dash-main[dev,testing] --quiet
cd dash-main/dash-renderer && npm run build && pip install -e . && cd ./../..

- run:
name: Build
Expand Down
5 changes: 5 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[flake8]
ignore = E203, E266, E501, E731, W503
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4
Loading