diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5884b724f..31150ed99 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -45,12 +45,19 @@ jobs: echo "Running tests..." if [[ "x${{ github.event.inputs.ignoreLowerCoverage }}" == "xtrue" ]]; then echo "Lower coverage failures will be ignored." - ./ietf/manage.py test -v2 --validate-html-harder --settings=settings_test --ignore-lower-coverage + HOME=/root ./ietf/manage.py test -v2 --validate-html-harder --settings=settings_test --ignore-lower-coverage else - ./ietf/manage.py test -v2 --validate-html-harder --settings=settings_test + HOME=/root ./ietf/manage.py test -v2 --validate-html-harder --settings=settings_test fi coverage xml + - name: Upload geckodriver.log + uses: actions/upload-artifact@v3 + if: ${{ failure() }} + with: + name: geckodriverlog + path: geckodriver.log + - name: Upload Coverage Results to Codecov uses: codecov/codecov-action@v3.1.4 with: @@ -161,4 +168,4 @@ jobs: with: name: playwright-legacy-results-${{ matrix.project }} path: playwright/test-results/ - if-no-files-found: ignore \ No newline at end of file + if-no-files-found: ignore diff --git a/client/agenda/AgendaMobileBar.vue b/client/agenda/AgendaMobileBar.vue index 201d51794..5d15e9e69 100644 --- a/client/agenda/AgendaMobileBar.vue +++ b/client/agenda/AgendaMobileBar.vue @@ -1,12 +1,19 @@