Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kbirger committed Apr 5, 2024
1 parent fc427a5 commit 17eefcc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,15 @@ jobs:
- name: install deps
run: |
pdm venv create --with-pip --force $PYTHON
pdm install -G testing -G email
pdm install -G testing
- run: pdm info && pdm list

- run: 'pdm run python -c "import smarter_kettle_client.version; print(smarter_kettle_client.version.version_info())"'

- run: mkdir coverage

- run: pytest -v --doctest-modules --junitxml=junit/test-results.xml --cov --cov-report=xml --cov-report=html
- run: pytest -v --doctest-modules --junitxml=coverage/test-results-.xml --cov --cov-report=xml --cov-report=html

- name: store coverage files
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
# - name: install deps
# run: |
# pdm venv create --with-pip --force $PYTHON
# pdm install -G testing -G mypy
# pdm install -G mypy

# - name: install mypy
# if: steps.cache.outputs.cache-hit != 'true'
Expand Down
11 changes: 9 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "Smarter Kettle client library"
version = "0.1.0"
description = "Firebase Admin Python SDK"
description = "Smarter Kettle client library"
authors = [
{ name = "Kirill Birger", email = "[email protected]" },
{ name = "@kbirger" },
Expand All @@ -27,7 +27,14 @@ classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]

[tool.pdm.dev-dependencies]
testing = [
"pytest>=6.2.0",
"pytest-cov>=2.4.0",
"pytest-localserver>=0.4.1",
"pytest-asyncio>=0.16.0",
"pytest-mock>=3.6.1",
]

[project.urls]
Homepage = "https://www.github.com/kbirger/smarter-kettle-client"
Expand Down

0 comments on commit 17eefcc

Please sign in to comment.