feat: remove s3 file from annotations and use an observation array in… #83
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: tests | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8" | |
- uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: "1.3.0" | |
- name: Resolve dependencies | |
run: | | |
poetry export -f requirements.txt --without-hashes --output src/app/requirements.txt | |
poetry export -f requirements.txt --without-hashes --with dev --output src/requirements-dev.txt | |
- name: Build & run docker | |
env: | |
BUCKET_NAME: ${{ secrets.BUCKET_NAME }} | |
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }} | |
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }} | |
S3_REGION: ${{ secrets.S3_REGION }} | |
S3_ENDPOINT_URL: ${{ secrets.S3_ENDPOINT_URL }} | |
run: | | |
docker build src/. -t pyrostorage:python3.8-alpine3.10 | |
docker-compose -f docker-compose-dev.yml up -d --build | |
- name: Run docker test | |
run: | | |
docker-compose -f docker-compose-dev.yml exec -T backend coverage --version | |
docker-compose -f docker-compose-dev.yml exec -T backend coverage run -m pytest tests/ | |
docker-compose -f docker-compose-dev.yml exec -T backend coverage xml -o coverage-src.xml | |
docker cp pyro-storage_backend_1:/app/coverage-src.xml . | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./coverage-src.xml | |
flags: unittests | |
fail_ci_if_error: true | |
pytest-client: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python: [3.8] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: "1.3.0" | |
- name: Resolve dependencies | |
run: poetry export -f requirements.txt --without-hashes --output src/app/requirements.txt | |
- name: Build & run API server | |
env: | |
BUCKET_NAME: ${{ secrets.BUCKET_NAME }} | |
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }} | |
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }} | |
S3_REGION: ${{ secrets.S3_REGION }} | |
S3_ENDPOINT_URL: ${{ secrets.S3_ENDPOINT_URL }} | |
run: | | |
docker-compose up -d --build | |
docker ps | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: x64 | |
- name: Cache python modules | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-python-${{ matrix.python }}-${{ hashFiles('client/pyproject.toml') }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e "client/.[test]" | |
- name: Run client unittests | |
run: | | |
coverage --version | |
sleep 10 | |
cd client && coverage run -m pytest tests/ && coverage xml -o coverage-client.xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./client/coverage-client.xml | |
flags: client | |
fail_ci_if_error: true | |
headers: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Check the headers | |
uses: frgfm/validate-python-headers@main | |
with: | |
license: 'Apache-2.0' | |
owner: 'Pyronear' | |
starting-year: 2022 | |
folders: 'src,client,.github' | |
ignore-files: 'version.py,__init__.py' | |
ignore-folders: 'client/tests/,src/tests/' |