• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Castle: The best Real-Time/Embedded/HighTech language EVER. Attempt 2


Commit MetaInfo

Revisãobc6b5143377d8867584be432dbf805912c9f99ed (tree)
Hora2022-05-19 19:31:21
AutorAlbert Mietus < albert AT mietus DOT nl >
CommiterAlbert Mietus < albert AT mietus DOT nl >

Mensagem de Log

Added COVERAGE to make [py]test

Mudança Sumário

Diff

diff -r a1c2fe3a8e5a -r bc6b5143377d .hgignore
--- a/.hgignore Sat Apr 23 18:13:42 2022 +0200
+++ b/.hgignore Thu May 19 12:31:21 2022 +0200
@@ -10,3 +10,5 @@
1010
1111 Design/.*\.svg
1212 pyreversed/.*\.svg
13+htmlcov
14+.coverage
diff -r a1c2fe3a8e5a -r bc6b5143377d Makefile
--- a/Makefile Sat Apr 23 18:13:42 2022 +0200
+++ b/Makefile Thu May 19 12:31:21 2022 +0200
@@ -6,7 +6,9 @@
66
77 PYTEST_OPTONS=-rxXsfE
88 pytest test:
9- pytest ${PYTEST_OPTONS} pytst/
9+ coverage run --branch -m pytest ${PYTEST_OPTONS} pytst/
10+ coverage report --skip-covered
11+ coverage html
1012 pytest-s test-s:
1113 pytest ${PYTEST_OPTONS} -s pytst
1214 test-ds test-sd test-d: