Skip to content

Commit

Permalink
Updates 2024-08-28 - Code improvements and pipy preparation
Browse files Browse the repository at this point in the history
  • Loading branch information
CHRISCARLON committed Aug 28, 2024
1 parent 9c6fba9 commit fb2803c
Show file tree
Hide file tree
Showing 14 changed files with 428 additions and 188 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/herding_cats_explorer_tests.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Herding Cats Unit Tests
name: HerdingCats Unit Tests

on:
push:
branches:
- main
paths:
- "src/**"
- "HerdingCats/**"
- "tests/**"

jobs:
Expand All @@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"

- name: Install dependencies
run: |
Expand All @@ -28,7 +28,6 @@ jobs:
run: |
echo "[pytest]" > pytest.ini
echo "pythonpath = src/" >> pytest.ini
echo "addopts = -v" >> pytest.ini
- name: Run tests
run: pytest tests/
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -193,4 +193,5 @@ src/os_open_usrn_functions/explore_and_prep.py
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
.idea/

python_3.11.9_venv
.venv_3.11.9
.test_venv
26 changes: 26 additions & 0 deletions .poetryignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
__pycache__
*.pyc
*.pyo
*.pyd
.Python
env/
venv/
python_3.11.9_venv/
pip-log.txt
pip-delete-this-directory.txt
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.log
.git
.mypy_cache
.pytest_cache
.hypothesis
.github/
pytest.ini*
makefile
pyrightconfig.json*
5 changes: 5 additions & 0 deletions HerdingCats/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from . import (
api_endpoints as api_endpoints,
cats_errors as cats_errors,
herding_cats as herding_cats
)
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit fb2803c

Please sign in to comment.