-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Selected rows fixes #283
Selected rows fixes #283
Changes from 16 commits
caac0a3
c5d1723
2f4bb82
b6a32d7
3d4bdae
148d326
dc90534
fabaf77
e276e01
a76e43b
3cf29bd
7fb3913
f7ef79e
f2c2052
7acd81e
6a917f3
434bd13
9be0cfe
a889ebc
214ead8
30d9d4c
e656dcf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
version: 2.1 | ||
|
||
orbs: | ||
browser-tools: circleci/browser-tools@1.4.4 | ||
browser-tools: circleci/browser-tools@1.4.8 | ||
|
||
jobs: | ||
test: &test | ||
|
@@ -12,9 +12,8 @@ jobs: | |
password: $DASH_PAT_DOCKERHUB | ||
steps: | ||
- checkout | ||
- browser-tools/install-browser-tools: | ||
chrome-version: 116.0.5845.96 | ||
firefox-version: 116.0.3 | ||
- browser-tools/install-chrome | ||
- browser-tools/install-chromedriver | ||
- run: | ||
name: Install Python deps | ||
command: | | ||
|
@@ -36,6 +35,8 @@ jobs: | |
name: Run tests | ||
command: | | ||
. venv/bin/activate | ||
pip uninstall -y pytest | ||
pip install 'pytest<8.1.0' | ||
Comment on lines
+38
to
+39
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is there an There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Pytest has an issue with something and was failing. Reverting back to a lower version solved the issue. |
||
pytest --headless | ||
test-react-18: | ||
<<: *test | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These diffs are all coming from #281 right? So we'll need to merge #281 first, rebase, then merge in these changes..?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. That is correct.