Skip to content

Commit

Permalink
fix test and rename integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmicexplorer committed Jan 22, 2019
1 parent 2715100 commit 87410d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/python/pants_test/backend/python/tasks/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ python_library(

python_native_code_test_files = [
'test_build_local_python_distributions.py',
'test_python_distribution_integration.py',
'test_build_local_python_distributions_integration.py',
'test_ctypes.py',
'test_ctypes_integration.py',
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
from pants_test.testutils.py2_compat import assertRegex


class PythonDistributionIntegrationTest(PantsRunIntegrationTest):
class BuildLocalPythonDistributionsIntegrationTest(PantsRunIntegrationTest):
hello_install_requires_dir = 'testprojects/src/python/python_distribution/hello_with_install_requires'
hello_setup_requires = 'examples/src/python/example/python_distribution/hello/setup_requires'
py_dist_test = 'examples/tests/python/example_test/python_distribution'

def _assert_greeting(self, output):
self.assertEquals('hello!', output)
self.assertIn('hello!', output)

def test_pants_binary(self):
with temporary_dir() as tmp_dir:
Expand Down

0 comments on commit 87410d8

Please sign in to comment.