File tree 5 files changed +19
-4
lines changed
5 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 33
33
with :
34
34
project : tests/pyrighttestconfig.json
35
35
warn-partial : true
36
+
37
+ - name : Run isort
38
+ uses : isort/isort-action@v1
39
+
40
+ - name : Run Black
41
+ uses : psf/black@stable
42
+ with :
43
+ options : " --check --verbose"
Original file line number Diff line number Diff line change @@ -85,4 +85,4 @@ strict_equality = true
85
85
# Configuring error messages
86
86
show_error_context = false
87
87
show_column_numbers = false
88
- show_error_codes = true
88
+ show_error_codes = true
Original file line number Diff line number Diff line change
1
+ black
2
+ isort
1
3
pyright
2
4
matplotlib
3
5
pytest
Original file line number Diff line number Diff line change 1
1
pip install --upgrade pyright
2
2
pip install -r requirements.txt
3
+
4
+ cd ../
5
+ isort .
6
+ black .
3
7
pyright --pythonversion 3.11 -p pyrighttestconfig.json .
Original file line number Diff line number Diff line change 2
2
3
3
python -m pip install --upgrade pyright
4
4
python -m pip install -r requirements.txt
5
- pyright --pythonversion 3.11 -p pyrighttestconfig.json .
6
-
7
-
8
5
6
+ cd ../
7
+ python -m isort .
8
+ python -m black .
9
+ pyright --pythonversion 3.11 -p pyrighttestconfig.json .
You can’t perform that action at this time.
0 commit comments