1
1
use crate :: util:: { hex_to_id, named_subrepo_opts} ;
2
+ use serial_test:: parallel;
2
3
3
4
#[ test]
5
+ #[ parallel]
4
6
fn no ( ) -> crate :: Result {
5
7
for name in [ "base" , "empty" ] {
6
8
let repo = named_subrepo_opts ( "make_shallow_repo.sh" , name, crate :: restricted ( ) ) ?;
@@ -22,6 +24,7 @@ fn no() -> crate::Result {
22
24
}
23
25
24
26
#[ test]
27
+ #[ parallel]
25
28
fn yes ( ) -> crate :: Result {
26
29
for name in [ "shallow.git" , "shallow" ] {
27
30
let repo = named_subrepo_opts ( "make_shallow_repo.sh" , name, crate :: restricted ( ) ) ?;
@@ -38,8 +41,10 @@ mod traverse {
38
41
use gix_traverse:: commit:: Sorting ;
39
42
40
43
use crate :: util:: { hex_to_id, named_subrepo_opts} ;
44
+ use serial_test:: parallel;
41
45
42
46
#[ test]
47
+ #[ parallel]
43
48
fn boundary_is_detected_triggering_no_error ( ) -> crate :: Result {
44
49
for name in [ "shallow.git" , "shallow" ] {
45
50
let repo = named_subrepo_opts ( "make_shallow_repo.sh" , name, crate :: restricted ( ) ) ?;
@@ -50,6 +55,7 @@ mod traverse {
50
55
}
51
56
52
57
#[ test]
58
+ #[ parallel]
53
59
fn complex_graphs_can_be_iterated_despite_multiple_shallow_boundaries ( ) -> crate :: Result {
54
60
let base = gix_path:: realpath ( gix_testtools:: scripted_fixture_read_only ( "make_remote_repos.sh" ) ?. join ( "base" ) ) ?;
55
61
let shallow_base = gix_testtools:: scripted_fixture_read_only_with_args (
0 commit comments