Skip to content

Commit

Permalink
convert from nose to pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
bennibbelink committed Nov 12, 2023
1 parent aaf9e83 commit 04a5e37
Show file tree
Hide file tree
Showing 3 changed files with 176 additions and 202 deletions.
4 changes: 1 addition & 3 deletions tests/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
import sys
from hashlib import sha1
import numpy as np
import tables
from nose.tools import assert_equal


CYCLUS_HAS_COIN = None
Expand Down Expand Up @@ -85,7 +83,7 @@ def check_cmd(args, cwd, holdsrtn):
f.seek(0)
print("STDOUT + STDERR:\n\n" + f.read().decode())
holdsrtn[0] = rtn
assert_equal(rtn, 0)
assert rtn == 0


def cyclus_has_coin():
Expand Down
Loading

0 comments on commit 04a5e37

Please sign in to comment.