Skip to content

Commit

Permalink
Merge pull request #5 from CIAT-DAPA/develop
Browse files Browse the repository at this point in the history
pipeline edited to create geo_config txt
  • Loading branch information
Minotriz02 authored May 27, 2024
2 parents d903921 + 2b111d9 commit 70ec9b6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
permissions:
contents: read

env:
GEOSERVER_USERNAME: ${{secrets.GEOSERVER_USERNAME}}
GEOSERVER_PASSWORD: ${{secrets.GEOSERVER_PASSWORD}}

jobs:

# ------- START TEST PROCCESS -------- #
Expand All @@ -36,6 +40,10 @@ jobs:
- name: Install dependencies
run: |
pip install -r ./requirements.txt
- name: Create credentials file
run: |
echo "GEOSERVER_USER=${{env.GEOSERVER_USERNAME}}" > credentials.txt
echo "GEOSERVER_PASSWORD=${{env.GEOSERVER_PASSWORD}}" >> credentials.txt
- name: Run Tests
run: |
python -m unittest discover -s ./src/test/ -p 'test_*.py'
Expand Down

0 comments on commit 70ec9b6

Please sign in to comment.