2 files changed +22
-19
lines changed Original file line number Diff line number Diff line change 8
8
- name : Set up Python 3.10
9
9
uses : actions/setup-python@v5
10
10
with :
11
- python-version : ' 3.10 '
11
+ python-version : ' 3.11 '
12
12
cache : ' pip'
13
13
- name : Install dependencies
14
14
run : |
Original file line number Diff line number Diff line change 7
7
8
8
@pytest .fixture
9
9
def pulse_config ():
10
- return PulseConfig (** {
11
- "userid" : "test_user" ,
12
- "host" : "pulse.mozilla.org" ,
13
- "port" : 5671 ,
14
- "exchange" : "exchange/test_user/test" ,
15
- "routing_key" : "#" ,
16
- "queue" : "queue/test_user/test" ,
17
- "password" : "PULSE_PASSWORD" ,
18
- })
10
+ return PulseConfig (
11
+ ** {
12
+ "userid" : "test_user" ,
13
+ "host" : "pulse.mozilla.org" ,
14
+ "port" : 5671 ,
15
+ "exchange" : "exchange/test_user/test" ,
16
+ "routing_key" : "#" ,
17
+ "queue" : "queue/test_user/test" ,
18
+ "password" : "PULSE_PASSWORD" ,
19
+ }
20
+ )
19
21
20
22
21
23
@pytest .fixture
22
24
def mappings ():
23
25
return {
24
- "myrepo" : MappingConfig (** {
25
- "git_repository" : "myforge/myrepo.git" ,
26
- "rules" : {
27
- "rule1" : {
28
- "branch_pattern" : "branch_name" ,
29
- "mercurial_repository" : "myforge/myhgrepo"
30
-
31
- }
26
+ "myrepo" : MappingConfig (
27
+ ** {
28
+ "git_repository" : "myforge/myrepo.git" ,
29
+ "rules" : {
30
+ "rule1" : {
31
+ "branch_pattern" : "branch_name" ,
32
+ "mercurial_repository" : "myforge/myhgrepo" ,
33
+ }
34
+ },
32
35
}
33
- } )
36
+ )
34
37
}
35
38
36
39
0 commit comments