Skip to content

Commit abbc5ec

Browse files
authored
Merge pull request #650 from zapta/develop
Fixing the test and added a PR trigger
2 parents b63756d + 3ad332b commit abbc5ec

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ on:
44
# Run on each commit.
55
push:
66

7+
# Run on pull requests.
8+
pull_request:
9+
branches:
10+
- develop
11+
712
# NOTE: We run the test daily, even if we don't push anything, to ensure
813
# that the tests are still passing, despite potential changes in the github
914
# dependencies.

test/unit_tests/commands/test_apio_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def test_apio_info(apio_runner: ApioRunner):
4848
assert result.exit_code == 0, result.output
4949
assert result.output != cunstyle(result.output) # Colored
5050
assert "NO-COLORS" in result.output
51-
assert "\x1b[1;38;5;88mapio.cmd_name\x1b[0m" in result.output
51+
assert "apio.cmd_name\x1b[0m" in result.output
5252

5353
# -- Execute "apio info system". It should not emit colors.
5454
result = sb.invoke_apio_cmd(apio, ["info", "system"])

0 commit comments

Comments
 (0)