File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,12 @@ jobs:
40
40
# Run tests enabling the serde feature
41
41
- name : Run tests with the serde feature
42
42
run : cargo test --features "url/serde,url/expose_internals"
43
- # The #[debugger_visualizer] attribute is currently gated behind an unstable feature flag.
44
- # In order to test the visualizers for the url crate, they have to be tested on a nightly build .
43
+ # The #[debugger_visualizer] attribute is currently gated behind a feature flag until #[debugger_visualizer]
44
+ # is available in all rustc versions past our MSRV. As such, we only run the tests on newer rustc versions .
45
45
- name : Run debugger_visualizer tests
46
46
if : |
47
47
matrix.os == 'windows-latest' &&
48
- matrix.rust == 'nightly '
48
+ matrix.rust != '1.56.0 '
49
49
run : cargo test --test debugger_visualizer --features "url/debugger_visualizer,url_debug_tests/debugger_visualizer" -- --test-threads=1
50
50
- name : Test `no_std` support
51
51
run : cargo test --no-default-features --features=alloc
You can’t perform that action at this time.
0 commit comments