Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove a11y test as it is for the LA doc upload flow #7

Merged
merged 2 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 0 additions & 43 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,46 +61,3 @@ jobs:
run: |
rm -f ~/.gradle/caches/modules-2/modules-2.lock
rm -f ~/.gradle/caches/modules-2/gc.properties
accessibility-test:
name: Run accessibility tests
runs-on: ubuntu-latest
permissions:
actions: read
services:
postgres:
image: postgres
env:
POSTGRES_USER: mdbenefits_test
POSTGRES_DB: mdbenefits_test
POSTGRES_PASSWORD: postgres
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want to take these out or just fix them?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Never mind. We can add this logic back in if we need to. The tests really do need to go as they don't apply to our setup at all.

options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- name: Set up ChromeDriver
uses: nanasess/setup-chromedriver@v2.2.1
with:
chromedriver-version: '115.0.5790.102'
- name: Set up JDK
uses: actions/setup-java@v4.0.0
with:
distribution: 'adopt'
java-version: '17'
- name: Cache Gradle packages
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test with Gradle
run: ./gradlew accessibilityTest
- name: Cleanup Gradle Cache
run: |
rm -f ~/.gradle/caches/modules-2/modules-2.lock
rm -f ~/.gradle/caches/modules-2/gc.properties
10 changes: 0 additions & 10 deletions src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,16 +106,6 @@ server:
servlet:
session:
persistent: true
ftps:
username: ${FTPS_USERNAME:-""}
password: ${FTPS_PASSWORD:-""}
upload-url: ${FTPS_UPLOAD_URL:-""}
upload-dir: ${FTPS_UPLOAD_DIR:-""}
pgp:
bucket-name: ${PGP_KEYS_DIR}
seckey-file-path: ${PGP_SECKEY_FILE_PATH}
pubkey-file-path: ${PGP_PUBKEY_FILE_PATH}
sigkey-password: ${PGP_SIGKEY_PASSWORD}
management:
endpoints:
enabled-by-default: false

This file was deleted.

Loading