Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit 3033e5c

Browse files
committed
updated tests to include latest codeception verson
1 parent 5b3534e commit 3033e5c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
language: php
22

3+
env:
4+
CODECEPTION_VERSION: '2.4.x-dev'
5+
36
php:
47
- 5.6
58
- 7.0
@@ -12,4 +15,4 @@ before_script:
1215

1316
script:
1417
- php robo.phar test cli
15-
- php robo.phar test unit -g core
18+
- php robo.phar test "unit -g core"

RoboFile.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public function prepare()
1212
$config = json_decode(file_get_contents(__DIR__ . '/composer.json'), true);
1313

1414
$config['name'] = 'codeception/phpunit-wrapper-test';
15-
$config['require-dev']['codeception/codeception'] = '*';
15+
$config['require-dev']['codeception/codeception'] = getenv('CODECEPTION_VERSION');
1616
$config['replace'] = ['codeception/phpunit-wrapper' => '*'];
1717

1818
file_put_contents(__DIR__ . '/composer.json', json_encode($config));

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
},
2727
"require-dev": {
2828
"vlucas/phpdotenv": "^2.4",
29-
"codeception/specify": "^1.0"
29+
"codeception/specify": "*"
3030
}
3131
}

0 commit comments

Comments
 (0)