Skip to content

Remove accidental failfast keyword argument that crept in. #78

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

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
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
6 changes: 3 additions & 3 deletions tests/test_mig_shared_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ def __init__(self, pw_uid, pw_gid):

def create_dummy_gpwnam(pw_uid, pw_gid):
"""Helper to mimic pwd.getpwnam /etc/passwd lookup for arbitrary users"""

dummy = DummyPwInfo(pw_uid, pw_gid)
return lambda _: dummy


class MigSharedInstall__generate_confs(MigTestCase):
"""Unit test helper for the migrid code pointed to in class name"""

def test_creates_output_directory_and_adds_active_symlink(self):
symlink_path = temppath('confs', self)
cleanpath('confs-foobar', self)
Expand Down Expand Up @@ -112,4 +112,4 @@ def test_creates_output_directory_containing_a_standard_local_configuration(self


if __name__ == '__main__':
testmain(failfast=True)
testmain()
Loading