Skip to content

Commit

Permalink
remove behave tests
Browse files Browse the repository at this point in the history
  • Loading branch information
spyoungtech committed Feb 2, 2022
1 parent c3d53a2 commit 0f5f1c9
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions ci/runtests.ps1
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
.\venv\Scripts\activate.ps1
coverage run -m behave .\tests\features --format=progress2 --junit
coverage run -m pytest .\tests\unittests --junitxml=reports\pytestresults.xml
if ($LastExitCode -ne 0) {
$failure = 1
} else {
$failure = 0
}
coverage run -a -m pytest .\tests\unittests --junitxml=reports\pytestresults.xml
if ($LastExitCode -ne 0) {
$failure = 1
else {
$failure = 0
}

coverage report
$wc = New-Object 'System.Net.WebClient';
Get-ChildItem .\reports |
Expand Down

0 comments on commit 0f5f1c9

Please sign in to comment.