Skip to content

Commit addd35d

Browse files
committed
Merge branch 'master' of github.com:Codeception/codeception.github.com
2 parents a77bfdb + 1af6e48 commit addd35d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+2584
-2399
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# Steps represent a sequence of tasks that will be executed as part of the job
2020
steps:
2121
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
with:
2424
token: ${{ secrets.GH_PAT }}
2525

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

3-
gem 'jekyll', '~> 4.3.0'
3+
gem 'jekyll', '~> 4.3.3'
44
gem 'kramdown'
55
gem 'rouge'
66
gem 'webrick'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Codeception Site
1+
# Codeception.com Website
22

33
https://codeception.com
44

RoboFile.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class RoboFile extends \Robo\Tasks
1111

1212
const REPO_BLOB_URL = 'https://github.com/Codeception/Codeception/blob';
1313
const BRANCH_4x = '4.2';
14-
const BRANCH_5x = '5.0';
14+
const BRANCH_5x = '5.1';
1515

1616
function post()
1717
{
@@ -419,7 +419,7 @@ public function buildPhar80()
419419
$this->stopOnFail();
420420

421421
$this->taskFilesystemStack()->mkdir('build/80')->run();
422-
$this->setCodeceptionVersionTo('^5.0');
422+
$this->setCodeceptionVersionTo('^' . self::BRANCH_5x);
423423
$this->setPlatformVersionTo('8.0.2');
424424
$buildFile = 'build/80/codecept.phar';
425425
$this->buildPhar($buildFile);

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ banner:
2929
# disable content to show last blogpost
3030
# content: '🎉 Codeception truns 10! <a href="https://calendar.google.com/event?action=TEMPLATE&tmeid=NTBucXFnaGFpM2k3dHZ2YmNuYjE5MWdzdGYgMzBsbTRvNXU4NXBndGs3NTZtbmo4OTdvZWdAZw&tmsrc=30lm4o5u85pgtk756mnj897oeg%40group.calendar.google.com">Join online celebration</a> on November 30!'
3131
# content: '<a href="https://opencollective.com/codeception">Codeception is on OpenCollective! Support us 💖</a>'
32-
content: '<a href="https://codeception.com/07-28-2022/codeception-5.html">🎉 Codeception 5 is out!</a> | <a href="https://stand-with-ukraine.pp.ua">🇺🇦 Help Ukraine!</a>'
32+
content: '<a href="https://stand-with-ukraine.pp.ua">🇺🇦 Help Ukraine!</a>'

_data/extensions.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
- name: Testomat.io Reporter
2+
link: https://github.com/testomatio/php-reporter
3+
description: Run reports and analytics via [Testomat.io](https://testomat.io)
4+
image: https://testomat.io/wp-content/uploads/2022/03/Real_time_report_test_result-936x573.jpg
5+
16
- name: Allure Codeception Adapter
27
link: https://github.com/allure-framework/allure-codeception
38
description: This is a Codeception adapter for [Allure Framework](http://allure.qatools.ru)

_includes/algolia.html

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
<script>
2-
window.ALGOLIA_CONFIG = {
3-
'applicationId': '{{ site.algolia.application_id }}',
4-
'indexName': '{{ site.algolia.index_name }}',
5-
'apiKey': '{{ site.algolia.read_only_api_key }}',
6-
'baseurl': '{{ site.baseurl }}'
7-
}
2+
window.ALGOLIA_CONFIG = {
3+
'applicationId': '{{ site.algolia.application_id }}',
4+
'indexName': '{{ site.algolia.index_name }}',
5+
'apiKey': '{{ site.algolia.read_only_api_key }}',
6+
'baseurl': '{{ site.baseurl }}'
7+
}
88
</script>
99
<script id="algolia__template" type="text/template">
10-
{% raw %}
11-
<div class="algolia__result">
12-
<a class="algolia__result-link" href="{{ full_url }}#algolia:{{ css_selector }}">{{{ _highlightResult.title.value }}}</a>
13-
{{#posted_at}}
14-
<div class="algolia__result-date">{{ posted_at_readable }}</div>
15-
{{/posted_at}}
16-
<div class="algolia__result-text">{{{ _highlightResult.text.value }}}</div>
17-
</div>
18-
{% endraw %}
10+
{% raw %}
11+
<div class="algolia__result">
12+
<a class="algolia__result-link" href="{{ full_url }}#algolia:{{ css_selector }}">{{{
13+
_highlightResult.title.value }}}</a>
14+
{{#posted_at}}
15+
<div class="algolia__result-date">{{ posted_at_readable }}</div>
16+
{{/posted_at}}
17+
<div class="algolia__result-text">{{{ _highlightResult.text.value }}}</div>
18+
</div>
19+
{% endraw %}
1920
</script>
2021
<script id="algolia__template--no-results" type="text/template">
21-
No results found.
22+
No results found.
2223
</script>
2324
<script src="//cdn.jsdelivr.net/algoliasearch/3.6.0/algoliasearch.min.js"></script>
2425
<script src="//cdn.jsdelivr.net/algoliasearch.helper/2.1.0/algoliasearch.helper.min.js"></script>

_includes/announcement.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
<div style="background-color: #fff573; text-align: center; padding: 5px" class="hidden-xs">
2-
Training: Web Test Automation with Codeception - 04.09.2019-05.09.2019 <a href="https://sdclabs.com/trainings/schedule">Buy now!</a>
2+
Training: Web Test Automation with Codeception - 04.09.2019-05.09.2019 <a
3+
href="https://sdclabs.com/trainings/schedule">Buy now!</a>
34
</div>

_includes/cloudways.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
<a href="https://platform.cloudways.com/signup?id=1026022&data1=bw&coupon=DAVERT" class="cloud-banner" rel="nofollow noreferrer" target="_blank">
2-
<img src="/images/cloudways/banner1.jpg" alt="cloudways"/>
1+
<a href="https://platform.cloudways.com/signup?id=1026022&data1=bw&coupon=DAVERT" class="cloud-banner"
2+
rel="nofollow noreferrer" target="_blank">
3+
<img src="/images/cloudways/banner1.jpg" alt="cloudways"/>
34
</a>

_includes/extensions.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## DotReporter
44

5-
[See Source](https://github.com/Codeception/Codeception/blob/5.0/ext/DotReporter.php)
5+
[See Source](https://github.com/Codeception/Codeception/blob/5.1/ext/DotReporter.php)
66

77
DotReporter provides less verbose output for test execution.
88
Like PHPUnit printer it prints dots "." for successful testes and "F" for failures.
@@ -38,7 +38,7 @@ Use this extension as an example for building custom reporters.
3838

3939
## Logger
4040

41-
[See Source](https://github.com/Codeception/Codeception/blob/5.0/ext/Logger.php)
41+
[See Source](https://github.com/Codeception/Codeception/blob/5.1/ext/Logger.php)
4242

4343
Log suites/tests/steps using Monolog library.
4444
Monolog should be installed additionally by Composer.
@@ -66,7 +66,7 @@ extensions:
6666

6767
## Recorder
6868

69-
[See Source](https://github.com/Codeception/Codeception/blob/5.0/ext/Recorder.php)
69+
[See Source](https://github.com/Codeception/Codeception/blob/5.1/ext/Recorder.php)
7070

7171
Saves a screenshot of each step in acceptance tests and shows them as a slideshow on one HTML page (here's an [example](https://codeception.com/images/recorder.gif))
7272
Activated only for suites with WebDriver module enabled.
@@ -125,7 +125,7 @@ public function testLogin(AcceptanceTester $I)
125125

126126
## RunBefore
127127

128-
[See Source](https://github.com/Codeception/Codeception/blob/5.0/ext/RunBefore.php)
128+
[See Source](https://github.com/Codeception/Codeception/blob/5.1/ext/RunBefore.php)
129129

130130
Extension for execution of some processes before running tests.
131131

@@ -156,7 +156,7 @@ HINT: you can use different configurations per environment.
156156

157157
## RunFailed
158158

159-
[See Source](https://github.com/Codeception/Codeception/blob/5.0/ext/RunFailed.php)
159+
[See Source](https://github.com/Codeception/Codeception/blob/5.1/ext/RunFailed.php)
160160

161161
Saves failed tests into tests/_output/failed in order to rerun failed tests.
162162

@@ -185,7 +185,7 @@ On each execution failed tests are logged and saved into `tests/_output/failed`
185185

186186
## RunProcess
187187

188-
[See Source](https://github.com/Codeception/Codeception/blob/5.0/ext/RunProcess.php)
188+
[See Source](https://github.com/Codeception/Codeception/blob/5.1/ext/RunProcess.php)
189189

190190
Extension to start and stop processes per suite.
191191
Can be used to start/stop selenium server, chromedriver, mailcatcher, etc.
@@ -232,7 +232,7 @@ HINT: you can use different configurations per environment.
232232

233233
## SimpleReporter
234234

235-
[See Source](https://github.com/Codeception/Codeception/blob/5.0/ext/SimpleReporter.php)
235+
[See Source](https://github.com/Codeception/Codeception/blob/5.1/ext/SimpleReporter.php)
236236

237237
This extension demonstrates how you can implement console output of your own.
238238
Recommended to be used for development purposes only.

0 commit comments

Comments
 (0)