Skip to content

Commit

Permalink
Merge pull request #2 from srivickynesh/RHTAPWATCH-638
Browse files Browse the repository at this point in the history
chore(RHTAPWATCH-638): add initial files
  • Loading branch information
yftacherzog authored Dec 7, 2023
2 parents de39faf + 449fdcb commit 05a63e2
Show file tree
Hide file tree
Showing 5 changed files with 370 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Run tests

on:
pull_request:
branches: [main]
jobs:
test:
permissions:
checks: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Install pipenv
run: pip install pipenv==2023.7.23
- name: Create virtualenv
run: pipenv sync
- name: Run tests
run: |
pipenv run pytest tests
19 changes: 19 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
click = "*"
requests = "*"
pytest = "*"
black = "*"
mypy = "*"
pylint = "*"
isort = "*"

[dev-packages]

[requires]
python_version = "3.11"
python_full_version = "3.11.6"
Loading

0 comments on commit 05a63e2

Please sign in to comment.