-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Thu Jun 6 18:31:28 EDT 2024 Updating Pytests
- Loading branch information
Kyle Smith
committed
Jun 6, 2024
1 parent
30e5a74
commit 09f0552
Showing
3 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[pytest] | ||
junit_family=xunit1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
junit/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |