-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Allure test reports * Allure test reports * Allure test reports * Allure test reports * Allure test reports * Allure test reports * Allure test reports * Allure test reports * Allure test reports * Allure test reports * Allure test reports * Allure test reports * Allure test reports * Allure test reports * Allure test reports * Allure test reports * Allure test reports
- Loading branch information
1 parent
1b730c2
commit 83d575b
Showing
23 changed files
with
191 additions
and
41 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -7,11 +7,35 @@ on: | |
branches: [ master ] | ||
|
||
jobs: | ||
console: | ||
name: ci-console | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./hermes-console | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- name: Run linter | ||
run: yarn && yarn lint | ||
- name: Run frontend tests | ||
run: yarn test:unit | ||
- name: Upload artifact | ||
if: always() && github.ref == 'refs/heads/master' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ci-console | ||
path: ./hermes-console/allure-results | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
tasks: [ | ||
# Add/remove task in Allure Report job also | ||
{alias: "unitTests", name: "check"}, | ||
{alias: "integrationTests", name: "integrationTest"}, | ||
{alias: "slowIntegrationTests", name: "slowIntegrationTest"}, | ||
|
@@ -47,3 +71,61 @@ jobs: | |
with: | ||
paths: '**/build/test-results/**/TEST-*.xml' | ||
show: fail, skip | ||
- name: Upload artifact | ||
if: always() && github.ref == 'refs/heads/master' && matrix.tasks.alias != 'benchmark' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ matrix.tasks.alias }} | ||
path: build/allure-results | ||
|
||
allureReport: | ||
if: always() && github.ref == 'refs/heads/master' | ||
name: Generate Allure Report | ||
needs: [ build, console ] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download artifact unitTests | ||
uses: actions/download-artifact@v4 | ||
if: always() | ||
with: | ||
name: unitTests | ||
path: allure-results | ||
- name: Download artifact integrationTests | ||
uses: actions/download-artifact@v4 | ||
if: always() | ||
with: | ||
name: integrationTests | ||
path: allure-results | ||
- name: Download artifact slowIntegrationTests | ||
uses: actions/download-artifact@v4 | ||
if: always() | ||
with: | ||
name: slowIntegrationTests | ||
path: allure-results | ||
- name: Download artifact ci-console | ||
uses: actions/download-artifact@v4 | ||
if: always() | ||
with: | ||
name: ci-console | ||
path: allure-results | ||
- name: Load test report history | ||
uses: actions/checkout@v4 | ||
if: always() | ||
continue-on-error: true | ||
with: | ||
ref: gh-pages | ||
path: gh-pages | ||
- name: Build test report | ||
uses: simple-elf/[email protected] | ||
if: always() | ||
with: | ||
gh_pages: gh-pages | ||
allure_history: allure-history | ||
allure_results: allure-results | ||
- name: Publish test report | ||
uses: peaceiris/actions-gh-pages@v4 | ||
if: always() | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_branch: gh-pages | ||
publish_dir: allure-history |
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 @@ | ||
allure.results.directory=../build/allure-results |
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 @@ | ||
allure.results.directory=../build/allure-results |
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 @@ | ||
allure.results.directory=../build/allure-results |
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ pnpm-debug.log* | |
lerna-debug.log* | ||
|
||
node_modules | ||
allure-results | ||
.DS_Store | ||
dist | ||
dist-ssr | ||
|
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 |
---|---|---|
|
@@ -958,13 +958,39 @@ ajv@^6.12.4: | |
json-schema-traverse "^0.4.1" | ||
uri-js "^4.2.2" | ||
|
||
[email protected]: | ||
version "2.30.0" | ||
resolved "https://registry.yarnpkg.com/allure-commandline/-/allure-commandline-2.30.0.tgz#c121021d263cad2474ec0fd7490de4d3c65a06f3" | ||
integrity sha512-qSaGG/I8P38q8gufnxvEog+IrIeCick+PJxxoTp5Vh/L8kviymIfv3A7fvYWziOqZ/oDywyOuNFMEfPZiiKwAA== | ||
|
||
[email protected]: | ||
version "2.15.1" | ||
resolved "https://registry.yarnpkg.com/allure-js-commons/-/allure-js-commons-2.15.1.tgz#570285472c80759017de699035218821fd12a7d3" | ||
integrity sha512-5V/VINplbu0APnfSZOkYpKOzucO36Q2EtTD1kqjWjl7n6tj7Hh+IHCZsH3Vpk/LXRDfj9RuXugBBvwYKV5YMJw== | ||
dependencies: | ||
md5 "^2.3.0" | ||
properties "^1.2.1" | ||
strip-ansi "^5.2.0" | ||
|
||
[email protected]: | ||
version "2.15.1" | ||
resolved "https://registry.yarnpkg.com/allure-vitest/-/allure-vitest-2.15.1.tgz#2befeae639450bccf4c7fdc60b936779ca7b6d3a" | ||
integrity sha512-/G2lVJzUP5VB7AEDKy/KoU7z8JNNtPwXDNV4ZzSus3/QLzYVayVYpJd3S1XZbNrULK23z8PWUufBGQD8nIdjZA== | ||
dependencies: | ||
allure-js-commons "2.15.1" | ||
|
||
ansi-escapes@^4.3.2: | ||
version "4.3.2" | ||
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" | ||
integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== | ||
dependencies: | ||
type-fest "^0.21.3" | ||
|
||
ansi-regex@^4.1.0: | ||
version "4.1.1" | ||
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" | ||
integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== | ||
|
||
ansi-regex@^5.0.1: | ||
version "5.0.1" | ||
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" | ||
|
@@ -1186,6 +1212,11 @@ chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: | |
ansi-styles "^4.1.0" | ||
supports-color "^7.1.0" | ||
|
||
[email protected]: | ||
version "0.0.2" | ||
resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" | ||
integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== | ||
|
||
check-error@^1.0.3: | ||
version "1.0.3" | ||
resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.3.tgz#a6502e4312a7ee969f646e83bb3ddd56281bd694" | ||
|
@@ -1301,11 +1332,6 @@ config-chain@^1.1.13: | |
ini "^1.3.4" | ||
proto-list "~1.2.1" | ||
|
||
connect-history-api-fallback@^1.6.0: | ||
version "1.6.0" | ||
resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc" | ||
integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg== | ||
|
||
connect-pause@^0.1.1: | ||
version "0.1.1" | ||
resolved "https://registry.yarnpkg.com/connect-pause/-/connect-pause-0.1.1.tgz#b269b2bb82ddb1ac3db5099c0fb582aba99fb37a" | ||
|
@@ -1361,6 +1387,11 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: | |
shebang-command "^2.0.0" | ||
which "^2.0.1" | ||
|
||
[email protected]: | ||
version "0.0.2" | ||
resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" | ||
integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== | ||
|
||
css.escape@^1.5.1: | ||
version "1.5.1" | ||
resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" | ||
|
@@ -2440,6 +2471,11 @@ is-boolean-object@^1.1.0: | |
call-bind "^1.0.2" | ||
has-tostringtag "^1.0.0" | ||
|
||
is-buffer@~1.1.6: | ||
version "1.1.6" | ||
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" | ||
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== | ||
|
||
is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: | ||
version "1.2.7" | ||
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" | ||
|
@@ -2831,6 +2867,15 @@ magic-string@^0.30.5, magic-string@^0.30.8: | |
dependencies: | ||
"@jridgewell/sourcemap-codec" "^1.4.15" | ||
|
||
md5@^2.3.0: | ||
version "2.3.0" | ||
resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" | ||
integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== | ||
dependencies: | ||
charenc "0.0.2" | ||
crypt "0.0.2" | ||
is-buffer "~1.1.6" | ||
|
||
[email protected]: | ||
version "0.3.0" | ||
resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" | ||
|
@@ -3421,6 +3466,11 @@ pretty-format@^29.7.0: | |
ansi-styles "^5.0.0" | ||
react-is "^18.0.0" | ||
|
||
properties@^1.2.1: | ||
version "1.2.1" | ||
resolved "https://registry.yarnpkg.com/properties/-/properties-1.2.1.tgz#0ee97a7fc020b1a2a55b8659eda4aa8d869094bd" | ||
integrity sha512-qYNxyMj1JeW54i/EWEFsM1cVwxJbtgPp8+0Wg9XjNaK6VE/c4oRi6PNu5p7w1mNXEIQIjV5Wwn8v8Gz82/QzdQ== | ||
|
||
proto-list@~1.2.1: | ||
version "1.2.4" | ||
resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" | ||
|
@@ -3918,6 +3968,13 @@ string.prototype.trimstart@^1.0.6: | |
dependencies: | ||
ansi-regex "^5.0.1" | ||
|
||
strip-ansi@^5.2.0: | ||
version "5.2.0" | ||
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" | ||
integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== | ||
dependencies: | ||
ansi-regex "^4.1.0" | ||
|
||
strip-ansi@^6.0.0, strip-ansi@^6.0.1: | ||
version "6.0.1" | ||
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" | ||
|
@@ -4195,13 +4252,6 @@ [email protected]: | |
picocolors "^1.0.0" | ||
vite "^5.0.0" | ||
|
||
[email protected]: | ||
version "1.0.1" | ||
resolved "https://registry.yarnpkg.com/vite-plugin-rewrite-all/-/vite-plugin-rewrite-all-1.0.1.tgz#ee711a3d114634abb922a0e50e56736d7e9a324a" | ||
integrity sha512-W0DAchC8ynuQH0lYLIu5/5+JGfYlUTRD8GGNtHFXRJX4FzzB9MajtqHBp26zq/ly9sDt5BqrfdT08rv3RbB0LQ== | ||
dependencies: | ||
connect-history-api-fallback "^1.6.0" | ||
|
||
[email protected]: | ||
version "2.0.3" | ||
resolved "https://registry.yarnpkg.com/vite-plugin-vuetify/-/vite-plugin-vuetify-2.0.3.tgz#b65ee4e05cfc6bf2b478a32b6d58b42398519f1e" | ||
|
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 @@ | ||
allure.results.directory=../build/allure-results |
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 @@ | ||
allure.results.directory=../build/allure-results |
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 @@ | ||
allure.results.directory=../build/allure-results |
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 @@ | ||
allure.results.directory=../build/allure-results |
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 @@ | ||
allure.results.directory=../build/allure-results |
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 @@ | ||
allure.results.directory=../build/allure-results |
1 change: 1 addition & 0 deletions
1
hermes-tracker-elasticsearch/src/test/resources/allure.properties
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 @@ | ||
allure.results.directory=../build/allure-results |
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 @@ | ||
allure.results.directory=../build/allure-results |
Oops, something went wrong.