Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test time #120

Merged
merged 29 commits into from
Oct 25, 2022
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift click to select a range
5d9c349
Added first tests for linux kernel downloader, codecov action init
0xricksanchez Oct 17, 2022
1d52ae5
flake8
0xricksanchez Oct 17, 2022
0679f39
rm unnecessary conf
0xricksanchez Oct 17, 2022
f0c4c89
tests for kernel_unpacker
0xricksanchez Oct 17, 2022
660e764
merge main
0xricksanchez Oct 18, 2022
bd5e795
some refactoring
0xricksanchez Oct 18, 2022
0be17c9
docker_runner tests
0xricksanchez Oct 18, 2022
bf7dfd0
docker_runner tests
0xricksanchez Oct 18, 2022
7579ab0
wip kernel_builder tets
0xricksanchez Oct 20, 2022
c2f9d42
wip kernel_builder tets
0xricksanchez Oct 20, 2022
353343e
fixed sudo test
0xricksanchez Oct 20, 2022
abfce60
more tests
0xricksanchez Oct 21, 2022
2c737ff
more tests
0xricksanchez Oct 21, 2022
4a9d20c
more tests
0xricksanchez Oct 21, 2022
e2f71c1
linting, merge main
0xricksanchez Oct 21, 2022
592eed5
Merge branch 'main' into tests
0xricksanchez Oct 21, 2022
e49198d
.
0xricksanchez Oct 22, 2022
12598d9
more tests
0xricksanchez Oct 22, 2022
145e3a5
more tests
0xricksanchez Oct 22, 2022
23a34c6
more tests
0xricksanchez Oct 22, 2022
b2249a9
more tests
0xricksanchez Oct 23, 2022
5f98448
Merge branch 'main' into tests
0xricksanchez Oct 23, 2022
fda2749
more tests
0xricksanchez Oct 23, 2022
8fb4b92
Merge branch 'main' into tests
0xricksanchez Oct 25, 2022
a492bcb
more tests
0xricksanchez Oct 25, 2022
9064c89
more tests
0xricksanchez Oct 25, 2022
405cd92
more tests
0xricksanchez Oct 25, 2022
08fc6c6
more tests
0xricksanchez Oct 25, 2022
1ad62c1
more tests
0xricksanchez Oct 25, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
more tests
  • Loading branch information
0xricksanchez committed Oct 25, 2022
commit 08fc6c6d0096fc54da84b999a44873f2743b6e40
4 changes: 2 additions & 2 deletions src/tests/test_rootfs_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 25,7 @@ def test_run_container_full_cfg() -> None:
assert (
rfsb.client.containers.run.assert_called_with(
None,
volumes={"/home/raven/Git/like-dbg/io": {"bind": "/io", "mode": "rw"}},
volumes={f"{Path.cwd() / 'io'}": {"bind": f"{rfsb.docker_mnt}", "mode": "rw"}},
detach=True,
privileged=True,
remove=True,
Expand All @@ -43,7 43,7 @@ def test_run_container_no_hostname() -> None:
assert (
rfsb.client.containers.run.assert_called_with(
None,
volumes={"/home/raven/Git/like-dbg/io": {"bind": "/io", "mode": "rw"}},
volumes={f"{Path.cwd() / 'io'}": {"bind": f"{rfsb.docker_mnt}", "mode": "rw"}},
detach=True,
privileged=True,
remove=True,
Expand Down