Skip to content

Commit

Permalink
Fix CI (#422)
Browse files Browse the repository at this point in the history
* Fix CI

* Fix test
  • Loading branch information
KapJI committed Jun 19, 2022
1 parent caacfc7 commit 6ca5fac
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion src/pathpicker/screen_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def signal_handler(_sig: int, _frame: FrameType) -> None:
X_MODE = "X_MODE"

# characters for quick select mode label(excluded reserved chars: A,F)
LABELS = "BCDEGHIJKLMNOPQRSTUVWXYZ1234567890~!@#$%^&*()_+<>?{}|;'"
LABELS = "BCDEGHIJKLMNOPQRSTUVWXYZ1234567890~!@#$%^&*()_+<>?{}|;'"


# options for displayed to the user at the bottom of the screen
Expand Down
40 changes: 20 additions & 20 deletions src/tests/expected/xModeWithSelect.txt
Original file line number Diff line number Diff line change
@@ -1,36 +1,32 @@
A README.md | 8 ++++-
B README.md | 8 ++++-
*********
B fpp | 6 ++--
C fpp | 6 ++--

C src/__tests__/__init__.py | 0
D src/__tests__/__init__.py | 0
_________________________
D src/__tests__/cursesForTest.py | 45 ++++++++++++++++++++++++++++
E src/__tests__/cursesForTest.py | 45 ++++++++++++++++++++++++++++
______________________________
E |===>src/__tests__/initTest.py | 28 ++++++++++++++++++
G |===>src/__tests__/initTest.py | 28 ++++++++++++++++++
||||||||||||||||||||||||||||||
F src/__tests__/screenForTest.py | 67 ++++++++++++++++++++++++++++++++++++++
H src/__tests__/screenForTest.py | 67 ++++++++++++++++++++++++++++++++++++++
______________________________
G src/charCodeMapping.py | 20 +++++++++++++
I src/charCodeMapping.py | 20 +++++++++++++
______________________
H |===>src/choose.py | 15 ++++++++--
J |===>src/choose.py | 15 ++++++++--
||||||||||||||||||
I src/colorPrinter.py | 21 ++++++++-----
K src/colorPrinter.py | 21 ++++++++-----
___________________
J src/cursesAPI.py | 40 +++++++++++++++++++++++++
L src/cursesAPI.py | 40 +++++++++++++++++++++++++
________________
K src/format.py | 4 +--
M src/format.py | 4 +--
_____________
L src/processInput.py | 7 +++++
N src/processInput.py | 7 +++++
___________________
M src/screenControl.py | 28 +++++++-----------
O src/screenControl.py | 28 +++++++-----------
____________________
N src/screenFlags.py | 34 +++++++++++++++++++++
P src/screenFlags.py | 34 +++++++++++++++++++++
__________________
O 14 files changed, 290 insertions(+), 33 deletions(-)

P

Q
Q 14 files changed, 290 insertions(+), 33 deletions(-)

R

Expand All @@ -54,7 +50,11 @@ Z

2

3___________________________________________________________________________
3

4

5___________________________________________________________________________

[f|A] selection, [down|j|up|k|space|b] navigation, [enter] open, [x] quick

2 changes: 1 addition & 1 deletion src/tests/test_screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def __init__(
"xModeWithSelect",
input_file="gitDiff.txt",
with_attributes=True,
inputs=["x", "E", "H"],
inputs=["x", "G", "J"],
),
ScreenTestCase(
"gitAbbreviatedFiles",
Expand Down

0 comments on commit 6ca5fac

Please sign in to comment.