Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,6 @@ docs/notebooks

# MYPY static type checker cache
.mypy_cache

# Visual Studio Code stuff
.vscode
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "config"]
path = config
url = https://github.com/GeoscienceAustralia/dea-config.git
5 changes: 2 additions & 3 deletions check-code.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ pycodestyle --ignore=E122,E711,E701,E501 --max-line-length 120 \
integration_tests \
scripts/**/*.py

shellcheck ./**/*.sh
yamllint ./**/*.yaml
shellcheck ./digitalearthau/**/*.sh ./scripts/**/*.sh ./modules/**/*.sh
yamllint -d relaxed ./**/*.yaml

# Users can specify extra folders (ie. integration_tests) as arguments.
py.test -r sx --cov digitalearthau --durations=5 digitalearthau scripts/**/*.py "$@"

1 change: 1 addition & 0 deletions config
Submodule config added at db69bb
4 changes: 3 additions & 1 deletion digitalearthau/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,7 @@ def _get_module_name():

BASE_DIR = Path(__file__).absolute().parent
SCRIPT_DIR = BASE_DIR
CONFIG_DIR = BASE_DIR / 'config'
CONFIG_DIR = BASE_DIR.parent / 'config' / 'config' / 'collection-2-nci'
INGEST_CONFIG_DIR = CONFIG_DIR / 'ingestion'
PRODUCTS_CONFIG_DIR = CONFIG_DIR / 'products'
EO3_CONFIG_DIR = CONFIG_DIR / 'config' / 'config' / 'collection-3-nci'
Empty file.
86 changes: 0 additions & 86 deletions digitalearthau/config/eo3/eo3.odc-type.yaml

This file was deleted.

Loading