Skip to content

Commit

Permalink
Update sections
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Nov 3, 2024
1 parent 50f0f0d commit f16764c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- name: Install dependencies
run: |
pip install -e .
pip install -e '.[dev]'
pip install sphinx
pip install sphinx_rtd_theme
- name : Build docs
Expand Down Expand Up @@ -55,7 +56,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f pyproject.toml ]; then pip install -e .; fi
pip install -e .
pip install -e '.[dev]'
- name: Test with pytest
run: |
Expand Down Expand Up @@ -88,6 +90,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -e '.[dev]'
- name: Test with pytest
run: |
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ dependencies = [
"pydantic == 2.9.2",
"python-dateutil == 2.9.0.post0",
"tenacity == 9.0.0",
]

[project.optional-dependencies]
dev = [
"black",
"codecov",
"pytest",
Expand Down

0 comments on commit f16764c

Please sign in to comment.