-
-
Notifications
You must be signed in to change notification settings - Fork 636
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename src/testinfra -> src/testutils
This solves the problem of a duplicate wheel name
- Loading branch information
1 parent
26fc618
commit a002ca0
Showing
59 changed files
with
135 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...pants/testinfra/jvm/jar_task_test_base.py → ...pants/testutils/jvm/jar_task_test_base.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Copyright 2014 Pants project contributors (see CONTRIBUTORS.md). | ||
# Licensed under the Apache License, Version 2.0 (see LICENSE). | ||
|
||
from pants.testinfra.base.context_utils import TestContext as TestContext | ||
from pants.testinfra.base.context_utils import ( | ||
from pants.testutils.base.context_utils import TestContext as TestContext # noqa | ||
from pants.testutils.base.context_utils import ( | ||
create_context_from_options as create_context_from_options, | ||
) | ||
) # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright 2018 Pants project contributors (see CONTRIBUTORS.md). | ||
# Licensed under the Apache License, Version 2.0 (see LICENSE). | ||
|
||
from pants.testinfra.console_rule_test_base import ConsoleRuleTestBase as ConsoleRuleTestBase | ||
from pants.testutils.console_rule_test_base import ConsoleRuleTestBase as ConsoleRuleTestBase # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright 2014 Pants project contributors (see CONTRIBUTORS.md). | ||
# Licensed under the Apache License, Version 2.0 (see LICENSE). | ||
|
||
from pants.testinfra.engine.base_engine_test import EngineTestBase as EngineTestBase | ||
from pants.testutils.engine.base_engine_test import EngineTestBase as EngineTestBase # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Copyright 2016 Pants project contributors (see CONTRIBUTORS.md). | ||
# Licensed under the Apache License, Version 2.0 (see LICENSE). | ||
|
||
from pants.testinfra.engine.util import TARGET_TABLE as TARGET_TABLE | ||
from pants.testinfra.engine.util import MockConsole as MockConsole | ||
from pants.testinfra.engine.util import Target as Target | ||
from pants.testinfra.engine.util import assert_equal_with_printing as assert_equal_with_printing | ||
from pants.testinfra.engine.util import create_scheduler as create_scheduler | ||
from pants.testinfra.engine.util import init_native as init_native | ||
from pants.testinfra.engine.util import ( | ||
from pants.testutils.engine.util import TARGET_TABLE as TARGET_TABLE # noqa | ||
from pants.testutils.engine.util import MockConsole as MockConsole # noqa | ||
from pants.testutils.engine.util import Target as Target # noqa | ||
from pants.testutils.engine.util import assert_equal_with_printing as assert_equal_with_printing # noqa | ||
from pants.testutils.engine.util import create_scheduler as create_scheduler # noqa | ||
from pants.testutils.engine.util import init_native as init_native # noqa | ||
from pants.testutils.engine.util import ( | ||
remove_locations_from_traceback as remove_locations_from_traceback, | ||
) | ||
from pants.testinfra.engine.util import run_rule as run_rule | ||
) # noqa | ||
from pants.testutils.engine.util import run_rule as run_rule # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
# Copyright 2018 Pants project contributors (see CONTRIBUTORS.md). | ||
# Licensed under the Apache License, Version 2.0 (see LICENSE). | ||
|
||
from pants.testinfra.interpreter_selection_utils import PY_2 as PY_2 | ||
from pants.testinfra.interpreter_selection_utils import PY_3 as PY_3 | ||
from pants.testinfra.interpreter_selection_utils import PY_27 as PY_27 | ||
from pants.testinfra.interpreter_selection_utils import PY_36 as PY_36 | ||
from pants.testinfra.interpreter_selection_utils import PY_37 as PY_37 | ||
from pants.testinfra.interpreter_selection_utils import has_python_version as has_python_version | ||
from pants.testinfra.interpreter_selection_utils import ( | ||
from pants.testutils.interpreter_selection_utils import PY_2 as PY_2 # noqa | ||
from pants.testutils.interpreter_selection_utils import PY_3 as PY_3 # noqa | ||
from pants.testutils.interpreter_selection_utils import PY_27 as PY_27 # noqa | ||
from pants.testutils.interpreter_selection_utils import PY_36 as PY_36 # noqa | ||
from pants.testutils.interpreter_selection_utils import PY_37 as PY_37 # noqa | ||
from pants.testutils.interpreter_selection_utils import has_python_version as has_python_version # noqa | ||
from pants.testutils.interpreter_selection_utils import ( | ||
python_interpreter_path as python_interpreter_path, | ||
) | ||
from pants.testinfra.interpreter_selection_utils import ( | ||
) # noqa | ||
from pants.testutils.interpreter_selection_utils import ( | ||
skip_unless_all_pythons_present as skip_unless_all_pythons_present, | ||
) | ||
from pants.testinfra.interpreter_selection_utils import ( | ||
) # noqa | ||
from pants.testutils.interpreter_selection_utils import ( | ||
skip_unless_python3_present as skip_unless_python3_present, | ||
) | ||
from pants.testinfra.interpreter_selection_utils import ( | ||
) # noqa | ||
from pants.testutils.interpreter_selection_utils import ( | ||
skip_unless_python27_and_python3_present as skip_unless_python27_and_python3_present, | ||
) | ||
from pants.testinfra.interpreter_selection_utils import ( | ||
) # noqa | ||
from pants.testutils.interpreter_selection_utils import ( | ||
skip_unless_python27_and_python36_present as skip_unless_python27_and_python36_present, | ||
) | ||
from pants.testinfra.interpreter_selection_utils import ( | ||
) # noqa | ||
from pants.testutils.interpreter_selection_utils import ( | ||
skip_unless_python27_present as skip_unless_python27_present, | ||
) | ||
from pants.testinfra.interpreter_selection_utils import ( | ||
) # noqa | ||
from pants.testutils.interpreter_selection_utils import ( | ||
skip_unless_python36_and_python37_present as skip_unless_python36_and_python37_present, | ||
) | ||
from pants.testinfra.interpreter_selection_utils import ( | ||
) # noqa | ||
from pants.testutils.interpreter_selection_utils import ( | ||
skip_unless_python36_present as skip_unless_python36_present, | ||
) | ||
) # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.