Skip to content

Commit

Permalink
fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
OliLay committed Dec 13, 2023
1 parent 575f605 commit 7fa90a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Execute isort
uses: isort/isort-action@master
with:
configuration: "--check --color --diff --gitignore --verbose"
configuration: "--check --diff --gitignore --verbose"
tests:
runs-on: ubuntu-22.04
steps:
Expand Down
2 changes: 1 addition & 1 deletion tests/server/environment_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def test_map_arguments(self):
assert mapped_args.pop(0) == f"-isysroot{environment.instance_folder}/var/lib/sysroot.h"
assert mapped_args.pop(0) == f"-o{environment.instance_folder}/home/user/output.o"
assert mapped_args.pop(0) == f"-isystem{environment.instance_folder}/var/lib/system.h"
assert mapped_args.pop(0) == f"-isystem/usr/include/x86_64-linux-gnu/qt5"
assert mapped_args.pop(0) == "-isystem/usr/include/x86_64-linux-gnu/qt5"
assert mapped_args.pop(0) == f"{environment.mapped_cwd}/main.cpp"
assert mapped_args.pop(0) == f"{environment.mapped_cwd}/relative/relative.cpp"
assert mapped_args.pop(0) == f"{environment.instance_folder}/opt/src/absolute.cpp"
Expand Down

0 comments on commit 7fa90a0

Please sign in to comment.