Skip to content

Commit

Permalink
Merge pull request #21 from Ostorlab/feature/add_codecov
Browse files Browse the repository at this point in the history
Integration of Code Coverage Checks with Codecov
  • Loading branch information
deadly-panda authored Jul 16, 2024
2 parents 0e81655 + 492c015 commit 302a4a0
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 16 deletions.
37 changes: 21 additions & 16 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
---
# This workflow use pytest:
# - Install Python dependencies.
# - Run pytest for each of the supported Python versions ["3.8", "3.9", "3.10"].
Expand All @@ -9,10 +8,10 @@ name: Pytest.
on:
push:
branches:
- main
- main
pull_request:
branches:
- '*'
- '*'

concurrency:
group: ${{ github.ref }}
Expand All @@ -26,16 +25,22 @@ jobs:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies.
run: |
python -m pip install --upgrade pip
python -m pip install -r requirement.txt
python -m pip install -r tests/test-requirement.txt
- name: Runnning tests with pytest.
run: |
pytest -m "not docker"
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies.
run: |
python -m pip install --upgrade pip
python -m pip install -r requirement.txt
python -m pip install -r tests/test-requirement.txt
- name: Runnning tests with pytest.
run: |
pytest -m "not docker" --cov=./ --cov-report=xml:coverage.xml --cov-report=term-missing
- name: Upload coverage to Codecov.
uses: codecov/codecov-action@v4
with:
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.xml
1 change: 1 addition & 0 deletions agent/debug_agent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Debug agent implementation"""

import os
import logging
from rich import logging as rich_logging
Expand Down
1 change: 1 addition & 0 deletions tests/template_agent_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Unittests for agent."""

from ostorlab.agent import definitions as agent_definitions
from ostorlab.agent.message import message
from ostorlab.runtimes import definitions as runtime_definitions
Expand Down

0 comments on commit 302a4a0

Please sign in to comment.