Skip to content

Commit

Permalink
chore: Fix static analysis issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Drew Meyers committed Sep 17, 2024
1 parent b98fc9f commit 98230c4
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 864 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[test]"
pip install -e "app/.[test]"
- name: Run unit tests
run: |
pytest -vv
pytest -vv app/tests
11 changes: 10 additions & 1 deletion app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "unity-sps-ogc-processes-api"
version = "1.0.0"
version = "2.0.0"
authors = [
{ name = "Drew Meyers", email = "drew.meyers@jpl.nasa.gov" },
]
Expand All @@ -31,6 +31,15 @@ dependencies = [
"apache-airflow-client @ git+https://github.com/apache/airflow-client-python.git@2.9.0"
]

[project.optional-dependencies]
test = [
"pytest==8.0.2",
"pytest-dependency==0.6.0",
"httpx==0.23.0",
"requests-mock==1.12.1",
"pyfakefs==5.4.1",
"fakeredis[lua]==2.23.1"
]

[tool.setuptools.packages.find]
where = ["src"]
Expand Down
Loading

0 comments on commit 98230c4

Please sign in to comment.