-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* automated fixes * fix phpcs Drupal warnings * fix drupal best practice warnings * fix eslint * fix schema * depend on breakpoint_js_settings
- Loading branch information
Showing
15 changed files
with
228 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Make sure these boxes are checked before submitting your pull request - thank you! | ||
|
||
- [ ] All coding styles are fulfilled. ([How to check for cs issues?](https://github.com/BurdaMagazinOrg/thunder-dev-tools/blob/master/README.md#code-style-guidelines)) | ||
- [ ] All tests are running locally. ([How to run the test?](https://github.com/BurdaMagazinOrg/thunder-distribution/blob/8.x-1.x/docs/development.md#how-to-run-the-tests)) | ||
- [ ] Necessary update hooks are provided. | ||
- [ ] User roles have correct access for new introduced permission. | ||
- [ ] Every thunder module has a README.md in its root. Follow [this guidelines](https://www.drupal.org/node/2181737), but we don't need every topic. | ||
- [ ] Code is covered with well-balanced amount of inline comments. | ||
|
||
If you are really awesome, then your feature is covered by additional tests. Well done! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
# @file | ||
# .travis.yml - Drupal for Travis CI Integration | ||
# | ||
# Template provided by https://github.com/LionsAd/drupal_ti. | ||
|
||
language: php | ||
|
||
sudo: false | ||
|
||
php: | ||
- 7 | ||
- 5.6 | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- nodejs | ||
branches: | ||
only: | ||
- /^8\.([0-9]+|x)\-[0-9]+\.([0-9]+|x)$/ | ||
|
||
env: | ||
global: | ||
# add composer's global bin directory to the path | ||
# see: https://github.com/drush-ops/drush#install---composer | ||
- PATH="$PATH:$HOME/.composer/vendor/bin" | ||
|
||
# Configuration variables. | ||
- DRUPAL_TI_MODULE_NAME="ad_integration" | ||
- DRUPAL_TI_SIMPLETEST_GROUP=$DRUPAL_TI_MODULE_NAME | ||
|
||
# Define runners and environment vars to include before and after the | ||
# main runners / environment vars. | ||
#- DRUPAL_TI_SCRIPT_DIR_BEFORE="./drupal_ti/before" | ||
#- DRUPAL_TI_SCRIPT_DIR_AFTER="./drupal_ti/after" | ||
|
||
# The environment to use, supported are: drupal-7, drupal-8 | ||
- DRUPAL_TI_ENVIRONMENT="drupal-8" | ||
|
||
# The installation profile to use: | ||
#- DRUPAL_TI_INSTALL_PROFILE="testing" | ||
|
||
# Drupal specific variables. | ||
- DRUPAL_TI_DB="drupal_travis_db" | ||
- DRUPAL_TI_DB_URL="mysql://root:@127.0.0.1/drupal_travis_db" | ||
# Note: Do not add a trailing slash here. | ||
- DRUPAL_TI_WEBSERVER_URL="http://127.0.0.1" | ||
- DRUPAL_TI_WEBSERVER_PORT="8080" | ||
|
||
# Simpletest specific commandline arguments, the DRUPAL_TI_SIMPLETEST_GROUP is appended at the end. | ||
- DRUPAL_TI_SIMPLETEST_ARGS="--verbose --color --concurrency 4 --url $DRUPAL_TI_WEBSERVER_URL:$DRUPAL_TI_WEBSERVER_PORT" | ||
|
||
# === Behat specific variables. | ||
# This is relative to $TRAVIS_BUILD_DIR | ||
- DRUPAL_TI_BEHAT_DIR="./tests/behat" | ||
# These arguments are passed to the bin/behat command. | ||
- DRUPAL_TI_BEHAT_ARGS="" | ||
# Specify the filename of the behat.yml with the $DRUPAL_TI_DRUPAL_DIR variables. | ||
- DRUPAL_TI_BEHAT_YML="behat.yml.dist" | ||
# This is used to setup Xvfb. | ||
- DRUPAL_TI_BEHAT_SCREENSIZE_COLOR="1280x1024x16" | ||
# The version of selenium that should be used. | ||
- DRUPAL_TI_BEHAT_SELENIUM_VERSION="2.48.2" | ||
# Set DRUPAL_TI_BEHAT_DRIVER to "selenium" to use "firefox" or "chrome" here. | ||
- DRUPAL_TI_BEHAT_DRIVER="phantomjs" | ||
- DRUPAL_TI_BEHAT_BROWSER="firefox" | ||
|
||
# PHPUnit specific commandline arguments. | ||
- DRUPAL_TI_PHPUNIT_ARGS="--verbose --debug" | ||
# Specifying the phpunit-core src/ directory is useful when e.g. a vendor/ | ||
# directory is present in the module directory, which phpunit would then | ||
# try to find tests in. This option is relative to $TRAVIS_BUILD_DIR. | ||
#- DRUPAL_TI_PHPUNIT_CORE_SRC_DIRECTORY="./tests/src" | ||
|
||
# Code coverage via coveralls.io | ||
- DRUPAL_TI_COVERAGE="satooshi/php-coveralls:0.6.*" | ||
# This needs to match your .coveralls.yml file. | ||
- DRUPAL_TI_COVERAGE_FILE="build/logs/clover.xml" | ||
|
||
# Debug options | ||
#- DRUPAL_TI_DEBUG="-x -v" | ||
# Set to "all" to output all files, set to e.g. "xvfb selenium" or "selenium", | ||
# etc. to only output those channels. | ||
#- DRUPAL_TI_DEBUG_FILE_OUTPUT="selenium xvfb webserver" | ||
|
||
matrix: | ||
# [[[ SELECT ANY OR MORE OPTIONS ]]] | ||
#- DRUPAL_TI_RUNNERS="phpunit" | ||
#- DRUPAL_TI_RUNNERS="simpletest" | ||
#- DRUPAL_TI_RUNNERS="behat" | ||
#- DRUPAL_TI_RUNNERS="phpunit simpletest behat" | ||
# Use phpunit-core to test modules with phpunit with Drupal 8 core. | ||
- DRUPAL_TI_RUNNERS="phpunit-core" | ||
|
||
mysql: | ||
database: drupal_travis_db | ||
username: root | ||
encoding: utf8 | ||
|
||
before_install: | ||
- composer self-update | ||
|
||
# Code Checks | ||
- bash -x -e ./scripts/travis/test-source-code.sh | ||
|
||
# Continue with Drupal Tests | ||
- cd ./tests | ||
- composer global require "lionsad/drupal_ti:1.*" | ||
- drupal-ti before_install | ||
|
||
install: | ||
- drupal-ti install | ||
|
||
before_script: | ||
- drupal-ti before_script | ||
|
||
script: | ||
- drupal-ti script | ||
|
||
after_script: | ||
- drupal-ti after_script | ||
|
||
notifications: | ||
email: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ core: 8.x | |
|
||
dependencies: | ||
- token | ||
- breakpoint_js_settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# remove xdebug to make php execute faster | ||
phpenv config-rm xdebug.ini | ||
|
||
# globally require drupal coder for code tests | ||
composer global require drupal/coder | ||
|
||
# run phpcs | ||
phpcs --config-set installed_paths ~/.composer/vendor/drupal/coder/coder_sniffer | ||
phpcs --standard=Drupal --report=summary -p . | ||
phpcs --standard=DrupalPractice --report=summary -p . | ||
|
||
# JS ESLint checking | ||
mv ~/.nvm ~/.nvm-backup | ||
git clone https://github.com/creationix/nvm.git ~/.nvm | ||
(cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) | ||
set -x | ||
source ~/.nvm/nvm.sh | ||
set +x | ||
nvm install 4 | ||
npm install -g eslint | ||
eslint . | ||
rm -rf ~/.nvm | ||
mv ~/.nvm-backup ~/.nvm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.