Skip to content

Commit

Permalink
Source: google analytics data api refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-yermilov-gl committed Aug 3, 2022
1 parent 29bfa6d commit 54bd978
Show file tree
Hide file tree
Showing 11 changed files with 1,364 additions and 221 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
docker_image := airbyte/$(notdir $(CURDIR)):dev

run-build:
docker build . -t ${docker_image}

spec:
@docker run --rm $(docker_image) spec | jq

check:
@docker run --rm -v $(PWD)/secrets:/secrets $(docker_image) check --config /secrets/config.json | jq

discover:
@docker run --rm -v $(PWD)/secrets:/secrets $(docker_image) discover --config /secrets/config.json | jq

read:
@docker run --rm -v $(PWD)/secrets:/secrets -v $(PWD)/integration_tests:/integration_tests $(docker_image) read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json | jq

unittest-local:
@python -m pytest unit_tests
Loading

0 comments on commit 54bd978

Please sign in to comment.