Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pgorecki committed Mar 4, 2024
1 parent c4d7a63 commit ebd185d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
run: poetry lock --check

- name: Install dependencies
run: poetry install
run: poetry install --without examples

- name: Run tests
run: poetry run python -m pytest -p no:sugar -q tests/
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ ipython_config.py
# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[![](https://github.com/pgorecki/lato/workflows/Tests/badge.svg)](https://github.com/pgorecki/lato/actions?query=workflow%3ATests)
[![Documentation Status](https://readthedocs.org/projects/lato/badge/?version=latest)](https://lato.readthedocs.io/en/latest/?badge=latest)
[![PyPI version](https://img.shields.io/pypi/v/lato)](https://pypi.org/project/lato/)
[![Python Versions](https://img.shields.io/pypi/pyversions/lato)](https://pypi.org/project/lato/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![](https://github.com/pgorecki/lato/workflows/Tests/badge.svg)](https://github.com/python-poetry/poetry-core/actions?query=workflow%3ATests)
[![Downloads](https://static.pepy.tech/badge/lato/month)](https://pepy.tech/project/lato)

# Lato

Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 3 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@ license = "MIT"

[tool.poetry.dependencies]
python = "^3.9"
pytest = "^7.4.2"
pydantic = "^2.4.2"
mergedeep = "^1.3.4"

[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
build = "^1.0.3"
twine = "^4.0.2"
pytest = "^7.4.2"
Sphinx = "^7.2.6"
myst-parser = "^2.0.0"
sphinx-autodoc-typehints = "^2.0.0"
sphinx-autobuild = "^2021.3.14"
mypy = "^1.6.1"
sphinx-rtd-theme = "^1.3.0"
Expand All @@ -36,10 +37,6 @@ sphinx-rtd-theme = "^1.3.0"
dependency-injector = "^4.41.0"
lagom = "^2.5.0"


[tool.poetry.group.dev.dependencies]
sphinx-autodoc-typehints = "^2.0.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit ebd185d

Please sign in to comment.