JuliaWeb / HTTP.jl

HTTP for Julia
https://juliaweb.github.io/HTTP.jl/stable/
Other
626 stars 177 forks source link

tests: Use ARGS to choose which tests to run #1108

Closed cmcaine closed 3 months ago

cmcaine commented 10 months ago

ARGS can be specified like this:

Pkg.test("HTTP"; test_args=`ascii.jl parser.jl`)
# or
Pkg.test("HTTP"; test_args=["ascii.jl", "parser.jl"])

This is useful because the whole test suite takes ages to run.

codecov-commenter commented 10 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 82.78%. Comparing base (8f35185) to head (2431a13). Report is 28 commits behind head on master.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #1108 +/- ## ========================================== + Coverage 82.34% 82.78% +0.43% ========================================== Files 32 32 Lines 3042 3079 +37 ========================================== + Hits 2505 2549 +44 + Misses 537 530 -7 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

cmcaine commented 3 months ago

Bump.