Skip to content

Instantly share code, notes, and snippets.

@olofk
Last active May 1, 2020 18:45
Show Gist options
  • Select an option

  • Save olofk/973bf74a640105137a347f797935c93e to your computer and use it in GitHub Desktop.

Select an option

Save olofk/973bf74a640105137a347f797935c93e to your computer and use it in GitHub Desktop.
def ass(a,b):
assert a == b
import pytest
def myass(a,b):
assert a == b
def test_good():
a = 'one thing'
b = 'different thing'
myass(a,b)
def test_bad():
from other_file import ass
a = 'one thing'
b = 'different thing'
ass(a,b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment