File tree Expand file tree Collapse file tree 4 files changed +22
-7
lines changed Expand file tree Collapse file tree 4 files changed +22
-7
lines changed Original file line number Diff line number Diff line change 11
11
build :
12
12
name : Build
13
13
runs-on : ubuntu-latest
14
+ env :
15
+ APP_ENV : ci
16
+
14
17
strategy :
15
18
max-parallel : 10
16
19
matrix :
Original file line number Diff line number Diff line change @@ -22,5 +22,8 @@ public function registerBundles(): array
22
22
public function registerContainerConfiguration (LoaderInterface $ loader ): void
23
23
{
24
24
$ loader ->load (__DIR__ .'/config/default.yml ' );
25
+ if ('ci ' === $ this ->environment ) {
26
+ $ loader ->load (__DIR__ .'/config/ci/default.yml ' );
27
+ }
25
28
}
26
29
}
Original file line number Diff line number Diff line change
1
+ parameters :
2
+ neo4j.dsn.badname : bolt://localhostt
3
+ neo4j.dsn.test : neo4j://neo4j:testtest@localhost
Original file line number Diff line number Diff line change @@ -2,6 +2,12 @@ framework:
2
2
secret : test
3
3
test : true
4
4
5
+ parameters :
6
+ neo4j.dsn.badname : bolt://localhost
7
+ neo4j.dsn.secret : neo4j://neo4j:secret@localhost:7688
8
+ neo4j.dsn.test : neo4j://neo4j:testtest@neo4j
9
+ neo4j.dsn.simple : bolt://test:test@localhost
10
+
5
11
neo4j :
6
12
default_driver : neo4j-test
7
13
default_driver_config :
@@ -20,25 +26,25 @@ neo4j:
20
26
21
27
drivers :
22
28
- alias : neo4j_undefined_configs
23
- dsn : bolt://localhost
29
+ dsn : ' %neo4j.dsn.badname% '
24
30
25
31
- alias : neo4j-enforced-defaults
26
- dsn : bolt://localhost
32
+ dsn : ' %neo4j.dsn.badname% '
27
33
priority : null
28
34
29
35
- alias : neo4j-partly-enforced-defaults
30
- dsn : neo4j://neo4j: secret@localhost:7688
36
+ dsn : ' % neo4j.dsn. secret% '
31
37
32
38
- alias : neo4j-simple
33
- dsn : " bolt://test:test@localhost "
39
+ dsn : ' %neo4j.dsn.simple% '
34
40
35
41
- alias : neo4j-fallback-mechanism
36
42
priority : 100
37
- dsn : bolt://localhost
43
+ dsn : ' %neo4j.dsn.badname% '
38
44
39
45
- alias : neo4j-fallback-mechanism
40
46
priority : 1000
41
- dsn : bolt://localhost
47
+ dsn : ' %neo4j.dsn.badname% '
42
48
43
49
- alias : neo4j-test
44
- dsn : neo4j://neo4j:testtest@neo4j
50
+ dsn : ' % neo4j.dsn.test% '
You can’t perform that action at this time.
0 commit comments