Skip to content

Commit df022fe

Browse files
authored
docs: fix stale storage path in CLI help, remove misleading codecov badge (#23)
- download-extract's docstring (shown via --help) said files are stored under gtfs_data/YEAR/MONTH/DAY, but the real constant is GTFS_ARCHIVE_FOLDER = 'gtfs_archive' (config.py). Fix the path in the help text. - Removed the codecov badge: there are no test files anywhere in this repo (deleted in a past commit) and CI.yml only builds/pushes the Docker image, so codecov never receives real coverage data. Kept the CI build-status badge since it does reflect a real, accurate signal (whether the image build/deploy succeeded).
1 parent e76e01b commit df022fe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![](https://github.com/hasadna/open-bus-gtfs-etl/actions/workflows/CI.yml/badge.svg?branch=main) [![codecov](https://codecov.io/gh/hasadna/open-bus-gtfs-etl/branch/main/graph/badge.svg?token=JJDM2TRBA8)](https://codecov.io/gh/hasadna/open-bus-gtfs-etl)
1+
![](https://github.com/hasadna/open-bus-gtfs-etl/actions/workflows/CI.yml/badge.svg?branch=main)
22

33
# open-bus-gtfs-etl
44
GTFS ETL for Stride.

open_bus_gtfs_etl/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def main():
3232
help="Number of retries to make in case of problems, relevant only with --from-mot, defaults to 10 retries")
3333
@click.option('--retry-sleep-seconds', default=120)
3434
def download_extract(**kwargs):
35-
"""Downloads the daily gtfs data, store in a directory structure: gtfs_data/YEAR/MONTH/DAY
35+
"""Downloads the daily gtfs data, store in a directory structure: gtfs_archive/YEAR/MONTH/DAY
3636
and extract to dated workdir"""
3737
download_extract_api.main(**kwargs)
3838

0 commit comments

Comments
 (0)