-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
796bb6b
commit 545a330
Showing
4 changed files
with
24 additions
and
11 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Empty file.
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,17 @@ | ||
import os | ||
|
||
|
||
def go_docker(): | ||
os.system("docker-compose up -d") | ||
|
||
|
||
def coverage_report(): | ||
os.system("coverage run -m py.test") | ||
|
||
|
||
def coverage_xml(): | ||
os.system("coverage xml") | ||
|
||
|
||
def check_coverage(): | ||
os.system("coverage report --fail-under=95") |