Skip to content

Commit

Permalink
Reformat setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Apr 21, 2020
1 parent 91e5bd0 commit 087051a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ class ValidateCommand(BaseCommand):
description = "Run Python static code analyzer (flake8), formatter (black) and unit tests (pytest)."

user_options = [
('test-target=', 'i', 'tests/{test-target}')
]
('test-target=', 'i', 'tests/{test-target}')
]

def initialize_options(self):
self.test_target = ""
Expand Down Expand Up @@ -115,8 +115,8 @@ class RunAllTestsCommand(ValidateCommand):
description = ValidateCommand.description + "\nRun integration tests (pytest)."

user_options = [
('test-target=', 'i', 'integration_tests/{test-target}')
]
('test-target=', 'i', 'integration_tests/{test-target}')
]

def initialize_options(self):
self.test_target = ""
Expand Down

0 comments on commit 087051a

Please sign in to comment.