Skip to content

Commit

Permalink
fix cc tests (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
solverat committed Sep 22, 2023
1 parent 830e71f commit e95f530
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 20 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/codeception.yml
Expand Up @@ -98,9 +98,11 @@ jobs:

- name: Setup Chromium
run: |
nohup $CHROMEWEBDRIVER/chromedriver --url-base=/wd/hub /dev/null 2>&1 &
export DISPLAY=:99
chromedriver --url-base=/wd/hub &
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 &
- name: Start Webserver and Chrome
- name: Start Symfony Server
run: |
curl -sS https://get.symfony.com/cli/installer | bash -s -- --install-dir=$HOME/.symfony/bin
~/.symfony/bin/symfony server:start --port=8080 --dir=public --allow-http --no-tls --daemon
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ecs.yml
Expand Up @@ -114,4 +114,4 @@ jobs:
continue-on-error: true
run: |
bin/console cache:warmup --env=test
vendor/bin/ecs check ${{ github.workspace }}/lib/test-bundle/src/ToolboxBundle --config ${{ github.workspace }}/lib/test-bundle/ecs.php
vendor/bin/ecs check ${{ github.workspace }}/lib/test-bundle/src --config ${{ github.workspace }}/lib/test-bundle/ecs.php
12 changes: 6 additions & 6 deletions ISSUE_TEMPLATE.md
@@ -1,9 +1,9 @@
| Q | A
| ---------------- | -----
| Bug report? | yes/no
| Feature request? | yes/no
| BC Break report? | yes/no
| RFC? | yes/no
| Q | A |
|------------------|--------|
| Bug report? | yes/no |
| Feature request? | yes/no |
| BC Break report? | yes/no |
| RFC? | yes/no |

<!--
- Please fill in this template according to your issue.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
@@ -1,5 +1,5 @@
# License
Copyright (C) 2021 DACHCOM.DIGITAL
Copyright (C) 2023 DACHCOM.DIGITAL

This software is available under the GNU General Public License version 3 (GPLv3).

Expand Down
16 changes: 8 additions & 8 deletions PULL_REQUEST_TEMPLATE.md
@@ -1,11 +1,11 @@
| Q | A
| ------------- | ---
| Branch? | dev-master for features / 3.x for bug fixes
| Bug fix? | yes/no
| New feature? | yes/no
| BC breaks? | no
| Deprecations? | yes/no
| Fixed tickets | #... <!-- #-prefixed issue number(s), if any -->
| Q | A |
|---------------|----------------------------------------------------|
| Branch? | dev-master for features / 4.x for bug fixes |
| Bug fix? | yes/no |
| New feature? | yes/no |
| BC breaks? | no |
| Deprecations? | yes/no |
| Fixed tickets | #... <!-- #-prefixed issue number(s), if any --> |

<!--
Write a short README entry for your feature/bugfix here (replace this comment block.)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -2,7 +2,7 @@
"name": "dachcom-digital/toolbox",
"type": "pimcore-bundle",
"license": "GPL-3.0-or-later",
"description": "Pimcore X Project Kickstarter",
"description": "Pimcore Project Kickstarter",
"keywords": ["pimcore", "toolbox"],
"homepage": "https://github.com/dachcom-digital/pimcore-toolbox",
"authors": [
Expand Down
3 changes: 2 additions & 1 deletion tests/_envs/github.yml
Expand Up @@ -5,8 +5,9 @@ modules:
port: 9515
restart: true
wait: 1
window_size: 1280x1024
capabilities:
chromeOptions:
args: ['--no-sandbox', '--disable-extensions', '--headless', '--disable-gpu', '--disable-dev-shm-usage', '--window-size=1024,768']
args: ['--headless', '--disable-gpu']
prefs:
download.default_directory: '%TEST_BUNDLE_TEST_DIR%/_data/downloads'

0 comments on commit e95f530

Please sign in to comment.