Skip to content

Commit b5068e7

Browse files
oliverkleeSam Tuke
authored andcommitted
[CLEANUP] Move the PHPUnit configuration file (#99)
This will bring the project closer to the default Symfony project structure.
1 parent 8fb0ec4 commit b5068e7

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ code coverage of the fixed bugs and the new features.
7979
To run the existing unit tests, run this command:
8080

8181
```bash
82-
vendor/bin/phpunit -c Configuration/PHPUnit/phpunit.xml tests/Unit/
82+
vendor/bin/phpunit tests/Unit/
8383
```
8484

8585
### Running the integration tests

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ script:
6666
- >
6767
echo;
6868
echo "Running the unit tests";
69-
vendor/bin/phpunit -c Configuration/PHPUnit/phpunit.xml tests/Unit/;
69+
vendor/bin/phpunit tests/Unit/;
7070
7171
- >
7272
echo;
7373
echo "Running the integration tests";
74-
vendor/bin/phpunit -c Configuration/PHPUnit/phpunit.xml tests/Integration/;
74+
vendor/bin/phpunit tests/Integration/;
7575
7676
- >
7777
echo;

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1313
- REST action for getting all subscribers for a list (#83)
1414

1515
### Changed
16+
- Move the PHPUnit configuration file (#99)
1617
- Use the renamed phplist/core package (#97)
1718
- Adopt more of the default Symfony project structure (#92, #93, #94, #95)
1819

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.2/phpunit.xsd"
66
backupGlobals="false"
77
colors="true"
8-
bootstrap="../../vendor/autoload.php"
8+
bootstrap="vendor/autoload.php"
99
>
1010
<php>
1111
<ini name="error_reporting" value="-1"/>

0 commit comments

Comments
 (0)