custom-post-type-permalinks
Last commit date
CPTP
9 years ago
assets
9 years ago
language
9 years ago
.svnignore
9 years ago
CONTRIBUTING.md
9 years ago
CPTP.php
9 years ago
circle.yml
9 years ago
codesniffer.ruleset.xml
9 years ago
composer.json
9 years ago
custom-post-type-permalinks.php
9 years ago
license.txt
12 years ago
readme.md
9 years ago
readme.txt
9 years ago
screenshot-1.png
14 years ago
circle.yml
25 lines
| 1 | ## Customize the test machine |
| 2 | machine: |
| 3 | |
| 4 | # Override /etc/hosts |
| 5 | |
| 6 | # Add some environment variables |
| 7 | environment: |
| 8 | CIRCLE_ENV: test |
| 9 | WP_VERSION: trunk |
| 10 | |
| 11 | ## Customize dependencies |
| 12 | dependencies: |
| 13 | pre: |
| 14 | - sudo apt-get update; sudo apt-get install subversion |
| 15 | - bash bin/install-wp-tests.sh wordpress_test ubuntu '' 127.0.0.1 $WP_VERSION |
| 16 | - composer install |
| 17 | |
| 18 | ## Customize test commands |
| 19 | test: |
| 20 | override: |
| 21 | - phpunit |
| 22 | - composer phpcs |
| 23 | |
| 24 | |
| 25 |