Skip to content

Commit

Permalink
Merge pull request #7 from codeforamerica/remove-a11y-test
Browse files Browse the repository at this point in the history
Remove a11y test as it is for the LA doc upload flow
  • Loading branch information
bseeger authored Jan 17, 2024
2 parents 78221f2 + 29fe886 commit c5c2f50
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 140 deletions.
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
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.

0 comments on commit c5c2f50

Please sign in to comment.