Skip to content
This repository was archived by the owner on Jul 4, 2023. It is now read-only.

Commit 9c76dc6

Browse files
committed
C989EE78-765E-479B-B8D5-8EDF99EAB6D0
1 parent c18fde3 commit 9c76dc6

File tree

5 files changed

+1682
-32
lines changed

5 files changed

+1682
-32
lines changed

Makefile

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,39 @@
1-
local_token = ${LOCAL_TOKEN}
1+
dev_token = ${LOCAL_TOKEN}
22
production_token = ${PRODUCTION_TOKEN}
33

44
test:
55
rm coverage.xml || true
66
rm .coverage || true
7-
python -m pytest --cov=./ --cov-report=xml:flagtwo.coverage.xml
7+
python -m pytest --cov=./ tests/test_sample.py --cov-report=xml:flagtwo.coverage.xml
88

99
test.flagone:
1010
rm coverage.xml || true
1111
rm .coverage || true
1212
python -m pytest --cov=./ tests/test_number_two.py --cov-report=xml:flagone.coverage.xml
1313

14-
local.report:
15-
./local.sh -t ${local_token} -F flagsecond
14+
dev.report:
15+
./dev.sh -t ${dev_token} -F flagtwo -f flagtwo.coverage.xml
1616

17-
local.report.flagone:
18-
./local.sh -t ${local_token} -F flagone
17+
dev.report.flagone:
18+
./dev.sh -t ${dev_token} -F flagone -f flagone.coverage.xml
1919

2020
production.report:
2121
./production.sh -t ${production_token} -F flagtwo -f flagtwo.coverage.xml
2222

2323
production.report.flagone:
2424
./production.sh -t ${production_token} -F flagone -f flagone.coverage.xml
2525

26-
local.full:
27-
${MAKE} local.download
26+
dev.full:
27+
${MAKE} dev.download
2828
${MAKE} test
29-
${MAKE} local.report
29+
${MAKE} dev.report
3030
${MAKE} test.flagone
31-
${MAKE} local.report.flagone
31+
${MAKE} dev.report.flagone
32+
33+
dev.partial:
34+
${MAKE} dev.download
35+
${MAKE} test
36+
${MAKE} dev.report
3237

3338
production.full:
3439
${MAKE} production.download
@@ -42,9 +47,9 @@ production.partial:
4247
${MAKE} test
4348
${MAKE} production.report
4449

45-
local.download:
46-
curl -s http://localhost/bash > local.sh
47-
chmod +x ./local.sh
50+
dev.download:
51+
curl -s http://localhost/bash > dev.sh
52+
chmod +x ./dev.sh
4853

4954
production.download:
5055
curl -s https://codecov.io/bash > production.sh

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,4 @@ EAF7489D-C2DD-4CB4-B53D-DD7781CE329E
6262
F904B847-3311-42AC-A0A0-36A40EA7D488
6363
E97F66AF-BBF5-47E8-8576-9148110A1E57
6464
63C8D1C3-703F-40A1-8F7B-580A4D85D632
65+
C989EE78-765E-479B-B8D5-8EDF99EAB6D0

0 commit comments

Comments
 (0)