Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
fix: coverage error
Browse files Browse the repository at this point in the history
  • Loading branch information
UponTheSky committed Aug 16, 2023
1 parent fae19ea commit 5ae427e
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 35 deletions.
1 change: 1 addition & 0 deletions .github/workflows/python_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
paths:
- '**.py'
- '**.yaml'

# reference: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
jobs:
Expand Down
77 changes: 49 additions & 28 deletions pdm.lock

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

14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ classifiers = [
"Operating System :: POSIX :: Linux",
]

dependencies = ["yfinance>=0.2.27", "numpy>=1.25.2", "pandas>=2.0.3"]
dependencies = ["yfinance>=0.2.27", "numpy==1.24.4", "pandas>=2.0.3"]

[project.urls]
"Github Repository" = "https://github.com/uponTheSky/earningtrader"
Expand All @@ -22,14 +22,14 @@ requires = ["pdm-backend"]
build-backend = "pdm.backend"

[tool.pdm.dev-dependencies]
test = ["pytest>=7.4.0", "coverage>=7.3.0"]
test = [
"pytest>=7.4.0",
"coverage>=7.3.0",
"hypothesis>=6.82.4",
]
lint = ["ruff>=0.0.282"]
format = ["black>=23.7.0"]
jupyter = [
"notebook>=7.0.2",
"jupyter>=1.0.0",
"matplotlib>=3.7.2",
]
jupyter = ["notebook>=7.0.2", "jupyter>=1.0.0", "matplotlib>=3.7.2"]

[tool.pdm.scripts]
test = "pytest tests"

0 comments on commit 5ae427e

Please sign in to comment.