Skip to content

Commit

Permalink
Remove unneeded basic benchmark test
Browse files Browse the repository at this point in the history
  • Loading branch information
smartie2076 committed Apr 8, 2021
1 parent 44b2eed commit efde1a0
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,4 @@

def test_execution_not_terminated():
answer = main(input_file=os.path.join("tests", "inputs", "pytest_test.xlsx"))
assert answer == 1, f"Simulation with default inputs terminated."

'''
def test_blacks_main():
# Testing code formatting in main folder
r = os.system("black --check /src")
assert r == 0, f"Black exited with:\n {r}"
def test_blacks_code_folder():
# Testing code formatting in code folder
r = os.system("black --check /tests")
assert r == 0, f"Black exited with:\n {r}"
'''
assert answer == 1, f"Simulation with default inputs terminated."

0 comments on commit efde1a0

Please sign in to comment.