Skip to content

Commit 248d60e

Browse files
authored
Improve testing (alcaeus#293)
* Run workflows every Sunday * Remove failing seed list test
1 parent 0e99bf5 commit 248d60e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/coding-standards.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
push:
88
branches:
99
- "*.x"
10+
schedule:
11+
# Run workflow on every Sunday
12+
- cron: '25 5 * * 0'
1013

1114
jobs:
1215
coding-standards:

.github/workflows/tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
push:
88
branches:
99
- "*.x"
10+
schedule:
11+
# Run workflow on every Sunday
12+
- cron: '25 5 * * 0'
1013

1114
jobs:
1215
verification:

tests/Alcaeus/MongoDbAdapter/Mongo/MongoClientTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ public function provideConnectionUri()
2323
yield ['default', sprintf('mongodb://%s:%d', \MongoClient::DEFAULT_HOST, \MongoClient::DEFAULT_PORT)];
2424
yield ['localhost', 'mongodb://localhost'];
2525
yield ['mongodb://localhost', 'mongodb://localhost'];
26-
if (version_compare(phpversion('mongodb'), '1.4.0', '>=')) {
27-
yield ['mongodb+srv://foo.example.com', 'mongodb+srv://foo.example.com'];
28-
}
2926
}
3027

3128
public function testSerialize()

0 commit comments

Comments
 (0)