Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add final coverage handling #11778

Merged
merged 40 commits into from Sep 16, 2022
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
0c9d948
add final coverage handling
altendky Jun 3, 2022
238ec66
Merge branch 'main' into coverage
altendky Jun 20, 2022
73e5824
switch to development coverage
altendky Jun 20, 2022
dae06fc
correct url
altendky Jun 20, 2022
6345a35
only run one directory for now
altendky Jun 20, 2022
e259dd8
only 3.10
altendky Jun 20, 2022
ecb1312
delete windows data for now
altendky Aug 19, 2022
4132d41
drop the 35% failure point
altendky Aug 19, 2022
9419f6e
recover full test matrix
altendky Aug 19, 2022
54a749d
Use regular coverage
altendky Aug 19, 2022
e525fc7
Update test.yml
altendky Aug 19, 2022
0dea8f3
put coverage reporting into an artifact
altendky Aug 20, 2022
08af555
oops
altendky Aug 20, 2022
a5f347a
oopsy
altendky Aug 20, 2022
9b6c47f
Merge branch 'main' into coverage
altendky Aug 20, 2022
9bc9752
pytest-cov
altendky Aug 20, 2022
39fb1e4
maybe
altendky Aug 20, 2022
04ac63b
maybe help out flakes
altendky Aug 20, 2022
5303f8a
farm the spend bundle...
altendky Aug 20, 2022
2123de0
some more
altendky Aug 20, 2022
d0a7f72
more funds for the did test?
altendky Aug 21, 2022
4828d05
more...
altendky Aug 21, 2022
d505527
report chia/ and tests/ separately
altendky Aug 21, 2022
30008ad
job_timeout = 45 for core
altendky Aug 21, 2022
57a161c
tidy and disable diff-cover
altendky Aug 21, 2022
e39e6a8
remove job_timeout = 45
altendky Aug 22, 2022
50cab11
--rcfile=.coveragerc
altendky Aug 22, 2022
be90246
Update .github/workflows/test.yml
altendky Aug 22, 2022
a94426e
revert time and blocks
almogdepaz Aug 24, 2022
6695527
assert spend is in mempool, lower times and block count
almogdepaz Aug 25, 2022
ec6e142
remove sleep
almogdepaz Aug 25, 2022
4a76c85
lint
almogdepaz Aug 25, 2022
bd5cfa9
up timeout
almogdepaz Aug 25, 2022
3895e28
cat test - farm blocks until spend is included
almogdepaz Aug 25, 2022
70256fc
add spend check for nft endpoints
almogdepaz Aug 29, 2022
5456291
fix nft endpoint test
almogdepaz Aug 29, 2022
00ae5aa
remove unused code
almogdepaz Aug 29, 2022
7432e28
Merge pull request #13163 from Chia-Network/debug_test_flakes
altendky Aug 29, 2022
b3a29a0
Merge branch 'main' into coverage
altendky Sep 15, 2022
3d95eec
4
altendky Sep 15, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -125,7 +125,7 @@ jobs:
run: |
# skip windows until https://github.com/nedbat/coveragepy/issues/991 is resolved
rm coverage-data/*.tests_windows_* coverage-data/.*.tests_windows_*
coverage combine --data-file coverage-reports/.coverage coverage-data/
coverage combine--rcfile=.coveragerc --data-file coverage-reports/.coverage coverage-data/
altendky marked this conversation as resolved.
Show resolved Hide resolved
coverage xml --rcfile=.coveragerc --data-file coverage-reports/.coverage -o coverage-reports/coverage.xml
coverage html --rcfile=.coveragerc --data-file coverage-reports/.coverage --directory coverage-reports/html/

Expand Down