Skip to content

Commit

Permalink
Bug fix for implementation of dummy commands
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Jul 12, 2014
1 parent 6edda86 commit 2705e80
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,9 @@ class DummyCFFIBuild(CFFIBuild):
"""

def finalize_options(self):
build.finalize_options(self)

def run(self):
raise RuntimeError(setup_requires_error)


Expand All @@ -191,6 +194,9 @@ class DummyCFFIInstall(CFFIInstall):
"""

def finalize_options(self):
install.finalize_options(self)

def run(self):
raise RuntimeError(setup_requires_error)


Expand All @@ -202,7 +208,7 @@ class DummyPyTest(PyTest):
"""

def finalize_options(self):
raise RuntimeError(setup_requires_error)
test.finalize_options(self)

def run_tests(self):
raise RuntimeError(setup_requires_error)
Expand Down

0 comments on commit 2705e80

Please sign in to comment.