We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76f790d commit eecd039Copy full SHA for eecd039
.github/workflows/main.yml
@@ -52,9 +52,12 @@ jobs:
52
jupyter nbextension list 2>&1 | grep -ie "ipycanvas/extension.*enabled" -
53
jupyter labextension list 2>&1 | grep -ie "ipycanvas.*enabled.*ok" -
54
55
- - name: Test flake8
+ - name: Test PEP8
56
run: flake8 ipycanvas --ignore=E501,W504,W503
57
58
+ - name: Test PEP8 on example notebooks
59
+ run: jupytext examples/*.ipynb --check 'black --check {}'
60
+
61
build:
62
runs-on: ubuntu-latest
63
steps:
dev-environment.yml
@@ -11,3 +11,5 @@ dependencies:
11
- setuptools
12
- wheel
13
- twine
14
+ - jupytext
15
+ - black
0 commit comments