Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integration of Code Coverage Checks with Codecov #27

Merged
merged 3 commits into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 29 additions & 25 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,15 +8,14 @@ name: Pytest.
on:
push:
branches:
- main
- main
pull_request:
branches:
- '*'

- '*'
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
build:

Expand All @@ -28,23 +26,29 @@ jobs:
python-version: ["3.11"]

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 Metasploit.
run: |
sudo snap install metasploit-framework
msfdb init
msfrpcd -P Ostorlab123 -p 55555
- name: Install dependencies.
run: |
python -m pip install --upgrade pip
python -m pip install -e tools/pymetasploit3
python -m pip install -r requirement.txt
python -m pip install -r tests/test-requirement.txt
- name: Running tests with pytest.
run: |
set -o pipefail
pytest -m "not docker" tests/
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Metasploit.
run: |
sudo snap install metasploit-framework
msfdb init
msfrpcd -P Ostorlab123 -p 55555
- name: Install dependencies.
run: |
python -m pip install --upgrade pip
python -m pip install -e tools/pymetasploit3
python -m pip install -r requirement.txt
python -m pip install -r tests/test-requirement.txt
- name: Running tests with pytest.
run: |
set -o pipefail
pytest -m "not docker" tests/ --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 tests/test-requirement.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pytest
pytest-cov
mypy
pytest_mock
# Typing requirements.
Expand Down
Loading