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

Remove test warnings and add github action to run tests #4

Merged
merged 5 commits into from
Aug 18, 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
34 changes: 34 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Run Unit Tests

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: [3.9]

steps:
- name: Check out code
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
pip install setuptools wheel
pip install -e .
pip install pytest

- name: Run tests
run: pytest
15 changes: 15 additions & 0 deletions programmer/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import warnings

# Disable the specific DeprecationWarning for distutils
warnings.filterwarnings(
"ignore",
category=DeprecationWarning,
message="The distutils package is deprecated and slated for removal",
)

# Disable SentryHubDeprecationWarning
warnings.filterwarnings(
"ignore",
category=DeprecationWarning, # or use SentryHubDeprecationWarning if it's a custom category
message="`sentry_sdk.Hub` is deprecated and will be removed",
)
Loading