chore(deps-dev): bump jinja2 from 3.1.3 to 3.1.4 #401
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: API Tests | |
on: | |
pull_request: | |
paths-ignore: | |
- '**cli**' | |
push: | |
branches: | |
- master | |
jobs: | |
test-latest: | |
name: Integration Tests (Fossology - Latest) | |
runs-on: ubuntu-latest | |
container: | |
image: python:3.11-slim | |
volumes: | |
- /tmp:/tmp | |
services: | |
fossology: | |
image: fossology/fossology:latest | |
ports: | |
- 8081:80 | |
volumes: | |
- /tmp:/tmp | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install host dependencies | |
run: | | |
apt-get -qq update | |
apt-get install -qq gcc git nmap xz-utils | |
rm -rf /var/lib/apt/lists/* | |
- name: Install Python dependencies | |
run: | | |
pip install poetry | |
poetry install --with=dev | |
- name: Install files in shared volume | |
run: | | |
tar xJf tests/files/base-files_11.tar.xz -C /tmp | |
- name: Check services | |
run: nmap fossology -p 80 | |
- name: Run tests | |
run: | | |
poetry run coverage run --source=fossology -m pytest | |
poetry run coverage report -m | |
- name: upload codecoverage results only if we are on the repository fossology/fossology-python | |
if: ${{ github.repository == 'fossology/fossology-python' }} | |
run: poetry run codecov -t ${{ secrets.CODECOV_TOKEN }} |