Skip to content

Commit

Permalink
Fix artifact naming
Browse files Browse the repository at this point in the history
  • Loading branch information
joernott committed Feb 6, 2024
1 parent 4ff5dd1 commit 882776a
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 12 deletions.
7 changes: 4 additions & 3 deletions tests/github_actions/codeception_Acceptance.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
codeception:
title: codeception
additional_options: '--coverage-xml=/var/www/codeception_coverage.xml'
title: codeception_Acceptance
additional_options: '--coverage-xml=/var/www/coverage_codeception_Acceptance.xml'
logfile:
prefix: 'codeception'
output:
prefix: 'codeception-artifacts'
coverage:
path: 'source/codeception_coverage.xml'
path: 'source/coverage_codeception_Acceptance.xml'
prefix: coverage-reports-codeception_Acceptance
2 changes: 1 addition & 1 deletion tests/github_actions/codeception_AcceptanceSetup.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
codeception:
title: shop_setup
title: codeception_shop_setup
load_shop: '{{ .Data.prepare_shop.cache.prefix }}'
container:
# yamllint disable-line rule:line-length
Expand Down
2 changes: 1 addition & 1 deletion tests/github_actions/codeception_acceptanceSetup_70x.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
codeception:
title: shop_setup
title: codeception_shop_setup
load_shop: '{{ .Data.prepare_shop.cache.prefix }}'
container:
# yamllint disable-line rule:line-length
Expand Down
7 changes: 4 additions & 3 deletions tests/github_actions/codeception_acceptance_70x.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
codeception:
title: codeception
title: codeception_acceptance
suite: 'acceptance'
additional_options: '--coverage-xml=/var/www/codeception_coverage.xml'
additional_options: '--coverage-xml=/var/www/coverage_codeception_acceptance.xml'
logfile:
prefix: 'codeception'
output:
prefix: 'codeception-artifacts'
coverage:
path: 'source/codeception_coverage.xml'
path: 'source/coverage_codeception_acceptance.xml'
prefix: coverage-reports-codeception_acceptance
5 changes: 3 additions & 2 deletions tests/github_actions/phpunit_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ phpunit:
container:
options: '-e XDEBUG_MODE=coverage'
test: 'tests/Integration'
additional_options: '--bootstrap tests/bootstrap.php tests --coverage-clover=/var/www/integration_coverage.xml'
additional_options: '--bootstrap tests/bootstrap.php tests --coverage-clover=/var/www/coverage_phpunit_integration.xml'
logfile:
prefix: 'phpunit_integration'
output:
Expand All @@ -14,4 +14,5 @@ output:
source/source/log/oxideshop.log
data/php/logs/error_log.txt
coverage:
path: 'source/integration_coverage.xml'
path: 'source/coverage_phpunit_integration.xml'
prefix: coverage-reports-phpunit_integration
5 changes: 3 additions & 2 deletions tests/github_actions/phpunit_unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ phpunit:
container:
options: '-e XDEBUG_MODE=coverage'
test: 'tests/Unit'
additional_options: '--bootstrap tests/bootstrap.php tests --coverage-clover=/var/www/unit_coverage.xml'
additional_options: '--bootstrap tests/bootstrap.php tests --coverage-clover=/var/www/coverage_phpunit_unit.xml'
logfile:
prefix: 'phpunit_unit'
output:
Expand All @@ -14,4 +14,5 @@ output:
source/source/log/oxideshop.log
data/php/logs/error_log.txt
coverage:
path: 'source/unit_coverage.xml'
path: 'source/coverage_phpunit_unit.xml'
prefix: coverage-reports-phpunit_unit

0 comments on commit 882776a

Please sign in to comment.