Skip to content

Commit bd90e6e

Browse files
committed
verbose is hard to read
1 parent a7c3c85 commit bd90e6e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install Python Dependencies
3131
run: pip install -r requirements/test-run.txt
3232
- name: Run Tests
33-
run: nox -s test --verbose -- --headless
33+
run: nox -s test -- --headless
3434
test-python-versions:
3535
runs-on: ${{ matrix.os }}
3636
strategy:
@@ -54,7 +54,7 @@ jobs:
5454
- name: Install Python Dependencies
5555
run: pip install -r requirements/test-run.txt
5656
- name: Run Tests
57-
run: nox -s test --verbose -- --headless --no-cov
57+
run: nox -s test -- --headless --no-cov
5858
test-javascript:
5959
runs-on: ubuntu-latest
6060
steps:

docs/source/examples/stop_event_propagation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def DivInDiv():
2626
return idom.html.div(
2727
idom.html.button(
2828
{"onClick": lambda e: set_stop_propagatation(not stop_propagatation)},
29-
f"Toggle Propogation",
29+
"Toggle Propogation",
3030
),
3131
idom.html.pre(f"Will stop propagation: {stop_propagatation}"),
3232
idom.html.pre(f"Inner click count: {inner_count}"),

0 commit comments

Comments
 (0)