Skip to content

Commit afc6e27

Browse files
flufflycthu1ubinamkayastha
authored andcommitted
Added debug flags for running locally and without making api calls
1 parent 258a095 commit afc6e27

4 files changed

Lines changed: 20 additions & 1148 deletions

File tree

.github/workflows/rescuegroups-api_dev.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ jobs:
2929
BLUESKY_HANDLE: ${{ secrets.BLUESKY_TEST_HANDLE }}
3030
BLUESKY_PASSWORD: ${{ secrets.BLUESKY_TEST_PASSWORD }}
3131
run: |
32-
python ./main.py
32+
#In order to create posts on the test accounts remove the --debugposters debug flag
33+
python ./main.py --debugsources --debugposters

adoption_sources/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Adoption pet sources implementing the PetSource interface."""
22

3-
from adoption_sources.manual import MANUAL_SOURCE_DATA, SourceManual
3+
from adoption_sources.manual import SourceManual
44
from adoption_sources.rescue_groups import SourceRescueGroups
55

6-
__all__ = ["SourceRescueGroups", "SourceManual", "MANUAL_SOURCE_DATA"]
6+
__all__ = ["SourceRescueGroups", "SourceManual"]

0 commit comments

Comments
 (0)