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 f922e2e commit dd546cdCopy full SHA for dd546cd
.github/workflows/build.yml
@@ -58,14 +58,17 @@ jobs:
58
- name: Install dependencies
59
run: |
60
pip install wheel
61
- pip install --upgrade --upgrade-strategy=eager pytest pytest-asyncio "jupyterlab~=2.0"
+ pip install --upgrade --upgrade-strategy=eager pytest pytest-asyncio "jupyterlab~=2.0" black
62
63
- name: Test the extension
64
65
# Build the sdist (identical to what will be uploaded to eg pypi on release)
66
python setup.py sdist
67
# Linter checks
68
jlpm run eslint-check
69
+
70
+ # Python formatting checks
71
+ black . --check
72
73
# Install the extension from the sdist ensuring the cache is unused
74
pip install jupyterlab_git[test] --pre --no-index --find-links=dist --no-deps --no-cache-dir -v
0 commit comments