Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ code coverage of the fixed bugs and the new features.
To run the existing unit tests, run this command:

```bash
vendor/bin/phpunit -c Configuration/PHPUnit/phpunit.xml tests/Unit/
vendor/bin/phpunit tests/Unit/
```

### Running the integration tests
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ script:
- >
echo;
echo "Running the unit tests";
vendor/bin/phpunit -c Configuration/PHPUnit/phpunit.xml tests/Unit/;
vendor/bin/phpunit tests/Unit/;

- >
echo;
echo "Running the integration tests";
vendor/bin/phpunit -c Configuration/PHPUnit/phpunit.xml tests/Integration/;
vendor/bin/phpunit tests/Integration/;

- >
echo;
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- REST action for getting all subscribers for a list (#83)

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

Expand Down
2 changes: 1 addition & 1 deletion Configuration/PHPUnit/phpunit.xml → phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.2/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="../../vendor/autoload.php"
bootstrap="vendor/autoload.php"
>
<php>
<ini name="error_reporting" value="-1"/>
Expand Down