File tree 5 files changed +21
-8
lines changed
5 files changed +21
-8
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
- pip install --upgrade pyright
2
- pip install -r requirements.txt
1
+ pip install -r requirements.txt -U
2
+
3
+ cd ../
4
+ isort .
5
+ black .
3
6
pyright --pythonversion 3.11 -p pyrighttestconfig.json .
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- python -m pip install --upgrade pyright
4
- python -m pip install -r requirements.txt
5
- pyright --pythonversion 3.11 -p pyrighttestconfig.json .
6
-
7
-
3
+ python -m pip install -r requirements.txt -U
8
4
5
+ cd ../
6
+ python -m isort .
7
+ python -m black .
8
+ pyright --pythonversion 3.11 -p pyrighttestconfig.json .
You can’t perform that action at this time.
0 commit comments