Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Mar 23, 2024
1 parent 1eb63fb commit 90a7d99
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ jobs:
docker compose exec django python manage.py migrate
- name: Run Benchmark
run: .tests/benchmark/time.sh ${{ inputs.size }}
run: ./tests/benchmark/time.sh ${{ inputs.size }}

- name: Create plots
run: .tests/benchmark/plot.py
run: ./tests/benchmark/plot.py

- uses: actions/upload-artifact@v4
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
docker compose exec django python manage.py populate_users
docker compose exec django python manage.py populate_data
- name: Load .env file
uses: xom9ikk/dotenv@v2

- name: Healthcheck
run: wget http://${OGCAPIF_HOST}:${DJANGO_DEV_PORT}/oapif/collections/tests.point_2056_10fields/items

Expand Down
9 changes: 1 addition & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,6 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
if: github.repository == 'opengisch/django_ogcapif'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Setup Compose
run: |
docker compose --profile testing_integration up --build -d
Expand All @@ -44,7 +37,7 @@ jobs:
docker compose exec django python manage.py populate_data
- name: Run unit tests
run: docker compose exec django_oapif_tests python manage.py test
run: docker compose exec django python manage.py test

- name: Run integration tests
run: docker compose run integration_tests
Expand Down

0 comments on commit 90a7d99

Please sign in to comment.