-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a245ae
commit a1f524f
Showing
2 changed files
with
12 additions
and
0 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 |
---|---|---|
|
@@ -72,6 +72,8 @@ jobs: | |
working-directory: ${{ env.backend-directory }} | ||
run: | | ||
touch .env | ||
echo LOG_LEVEL=DEBUG >> .env | ||
echo LOG_OUTFILE=ciso-assistant.log >> .env | ||
echo DJANGO_DEBUG=True >> .env | ||
echo [email protected] >> .env | ||
echo DJANGO_SUPERUSER_PASSWORD=1234 >> .env | ||
|
@@ -111,6 +113,7 @@ jobs: | |
with: | ||
name: functional-tests-report-${{ matrix.playwright-browser }} | ||
path: | | ||
${{ env.backend-directory }}/*.log | ||
${{ env.frontend-directory }}/tests/results/ | ||
${{ env.frontend-directory }}/tests/reports/ | ||
retention-days: 5 | ||
|
@@ -173,6 +176,8 @@ jobs: | |
working-directory: ${{ env.backend-directory }} | ||
run: | | ||
touch .env | ||
echo LOG_LEVEL=DEBUG >> .env | ||
echo LOG_OUTFILE=ciso-assistant.log >> .env | ||
echo DJANGO_DEBUG=True >> .env | ||
echo [email protected] >> .env | ||
echo DJANGO_SUPERUSER_PASSWORD=1234 >> .env | ||
|
@@ -210,6 +215,7 @@ jobs: | |
with: | ||
name: enterprise-functional-tests-report-${{ matrix.playwright-browser }} | ||
path: | | ||
${{ env.backend-directory }}/*.log | ||
${{ env.enterprise-frontend-build-directory }}/tests/results/ | ||
${{ env.enterprise-frontend-build-directory }}/tests/reports/ | ||
retention-days: 5 |
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 |
---|---|---|
|
@@ -67,6 +67,8 @@ jobs: | |
working-directory: ${{ env.backend-directory }} | ||
run: | | ||
touch .env | ||
echo LOG_LEVEL=DEBUG >> .env | ||
echo LOG_OUTFILE=ciso-assistant.log >> .env | ||
echo DJANGO_DEBUG=True >> .env | ||
echo [email protected] >> .env | ||
echo DJANGO_SUPERUSER_PASSWORD=1234 >> .env | ||
|
@@ -98,6 +100,7 @@ jobs: | |
with: | ||
name: startup-functional-test-report | ||
path: | | ||
${{ env.backend-directory }}/*.log | ||
${{ env.frontend-directory }}/tests/reports/ | ||
retention-days: 5 | ||
|
||
|
@@ -196,6 +199,8 @@ jobs: | |
working-directory: ${{ env.backend-directory }} | ||
run: | | ||
touch .env | ||
echo LOG_LEVEL=DEBUG >> .env | ||
echo LOG_OUTFILE=ciso-assistant.log >> .env | ||
echo DJANGO_DEBUG=True >> .env | ||
echo [email protected] >> .env | ||
echo DJANGO_SUPERUSER_PASSWORD=1234 >> .env | ||
|
@@ -225,6 +230,7 @@ jobs: | |
with: | ||
name: enterprise-startup-functional-test-report | ||
path: | | ||
${{ env.backend-directory }}/*.log | ||
${{ env.enterprise-frontend-build-directory }}/tests/reports/ | ||
retention-days: 5 | ||
|
||
|