Updated federation info (#171) #280
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
portal-backend-integration-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v1 | |
- name: Set up python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Deploy portalbackend and exareme2 | |
working-directory: ./dev/ | |
run: bash start.sh | |
- name: Get deployment status | |
run: docker ps | |
- name: Run the dev tests | |
working-directory: ./dev/ | |
run: pytest -k "not test_federation_info.py" | |
- name: Run the federation info tests | |
working-directory: ./dev/ | |
run: pytest tests/test_federation_info.py | |