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

Only pull docker daemon proxy image in tests #155

Merged
merged 2 commits into from
Aug 21, 2024
Merged
Changes from 1 commit
Commits
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
4 changes: 2 additions & 2 deletions tests/test_runner.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from buildrunner.docker.daemon import DAEMON_IMAGE_NAME
from buildrunner import docker as buildrunner_docker
import os
import sys
import docker.errors

sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__), "..")))

import buildrunner.config.loader # noqa: E402
from buildrunner.docker.daemon import DAEMON_IMAGE_NAME # noqa: E402
from buildrunner import docker as buildrunner_docker # noqa: E402
from buildrunner import ( # noqa: E402
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed with # noqa: E402

cli,
__version__,
Expand Down
Loading