Skip to content

Commit

Permalink
Thu Jun 6 18:31:28 EDT 2024 Updating Pytests
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Smith committed Jun 6, 2024
1 parent 30e5a74 commit 09f0552
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[pytest]
junit_family=xunit1
1 change: 1 addition & 0 deletions tests/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
junit/
7 changes: 4 additions & 3 deletions tests/tests.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import sys
sys.path.append('../')
import geese
import os
sys.path.append(os.path.realpath(os.path.dirname(__file__)+"/.."))
from geese import version


class TestStatic:

def test_version(self):
assert geese.version.__version__ == '1.1.2'
assert version.__version__ == '1.1.2'

0 comments on commit 09f0552

Please sign in to comment.