Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CLEANUP] PHP-PDS directory structure: Tests -> tests #494

Merged
merged 1 commit into from
Jan 21, 2018
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
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ code coverage of the fixed bugs and the new features.
To run the existing PHPUnit tests, run this command:

```shell
vendor/bin/phpunit Tests/
vendor/bin/phpunit tests/
```


Expand All @@ -89,7 +89,7 @@ We will only merge pull requests that follow the project's coding style.
Please check your code with the provided PHP_CodeSniffer standard:

```shell
vendor/bin/phpcs --standard=Configuration/PhpCodeSniffer/Standards/Emogrifier/ src/ Tests/
vendor/bin/phpcs --standard=Configuration/PhpCodeSniffer/Standards/Emogrifier/ src/ tests/
```

Please make your code clean, well-readable and easy to understand.
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ script:
- >
echo;
echo "Linting all PHP files";
find src/ Tests/ -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l;
find src/ tests/ -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l;

- >
echo;
echo "Running the unit tests";
vendor/bin/phpunit Tests/;
vendor/bin/phpunit tests/;

- >
echo;
echo "Running PHP_CodeSniffer";
vendor/bin/phpcs --standard=Configuration/PhpCodeSniffer/Standards/Emogrifier/ src/ Tests/;
vendor/bin/phpcs --standard=Configuration/PhpCodeSniffer/Standards/Emogrifier/ src/ tests/;
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
},
"autoload-dev": {
"psr-4": {
"Pelago\\Tests\\": "Tests/"
"Pelago\\Tests\\": "tests/"
}
},
"extra": {
Expand Down
File renamed without changes.