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 @@
.agenda-mobile-bar(v-if='siteStore.viewport < 990')
+ n-dropdown(
+ :options='jumpToDayOptions'
+ size='huge'
+ :show-arrow='true'
+ trigger='click'
+ @select='jumpToDay'
+ )
+ button
+ i.bi.bi-arrow-down-circle
button(@click='agendaStore.$patch({ filterShown: true })')
- i.bi.bi-filter-square-fill.me-2
- span Filters
+ i.bi.bi-funnel
n-badge.ms-2(:value='agendaStore.selectedCatSubs.length', processing)
button(@click='agendaStore.$patch({ calendarShown: true })')
- i.bi.bi-calendar3.me-2
- span Cal
+ i.bi.bi-calendar3
n-dropdown(
:options='downloadIcsOptions'
size='huge'
@@ -15,14 +22,13 @@
@select='downloadIcs'
)
button
- i.bi.bi-calendar-check.me-2
- span .ics
+ i.bi.bi-download
button(@click='agendaStore.$patch({ settingsShown: !agendaStore.settingsShown })')
i.bi.bi-gear