Skip to content

Commit

Permalink
Merge pull request #2 from Gowtham1729/feature/fetcher
Browse files Browse the repository at this point in the history
fix: lint and test
  • Loading branch information
Gowtham1729 authored Nov 25, 2023
2 parents a32eb06 + 2da378e commit a8bc423
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ tasks:
desc: Install poetry and dependencies for the Data Fetcher.
cmds:
- pip3 show poetry --quiet || pip3 install poetry
- cd applications/data-fetcher && poetry install
- cd applications/data_fetcher && poetry install

run-fetcher:
desc: Run the Data Fetcher.
Expand Down Expand Up @@ -108,6 +108,8 @@ tasks:

test-fetcher:
desc: Run tests for the Data Fetcher.
deps:
- install-fetcher
cmds:
- echo "Tested the Data Fetcher"

Expand Down
2 changes: 1 addition & 1 deletion applications/data_fetcher/fetcher.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
print(f"Fetcher is running...")
print(f"Fetcher is running...")

0 comments on commit a8bc423

Please sign in to comment.