Add failing test
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Matthias Neeracher 2019-02-03 01:29:12 +01:00
parent 46dcb254b4
commit 44a0c2788d
1 changed files with 7 additions and 0 deletions

7
test_bad.py Normal file
View File

@ -0,0 +1,7 @@
# Adapted from the test_sample.py example in the pytest documentation
def inc(x):
return x - 1
def test_answer():
assert inc(3) == 4