-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactoring for exception classes & helper methods * directory struct change:improving readability for streams.py * removed abstract decorator for set_params method * Updated Circle Ci configurtion file * Updated the formatting of the function call as per the suggestion Co-authored-by: Collin Simon <cosimon@users.noreply.github.com> * formatting changes Co-authored-by: RushT007 <rtodkar@stitchdata-talend.com> Co-authored-by: rdeshmukh15 <107538720+rdeshmukh15@users.noreply.github.com> Co-authored-by: Collin Simon <cosimon@users.noreply.github.com> Co-authored-by: “rdeshmukh15” <“redeshmukh@talend.com”>
- Loading branch information
1 parent
8064ad6
commit 022e26e
Showing
16 changed files
with
564 additions
and
538 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,42 @@ | ||
version: 2.1 | ||
|
||
executors: | ||
docker-executor: | ||
docker: | ||
- image: 218546966473.dkr.ecr.us-east-1.amazonaws.com/circle-ci:stitch-tap-tester | ||
|
||
version: 2 | ||
jobs: | ||
build: | ||
executor: docker-executor | ||
docker: | ||
- image: 218546966473.dkr.ecr.us-east-1.amazonaws.com/circle-ci:stitch-tap-tester | ||
steps: | ||
- run: echo 'CI done' | ||
|
||
- checkout | ||
- run: | ||
name: 'Setup virtual env' | ||
command: | | ||
python3 -mvenv /usr/local/share/virtualenvs/tap-dixa | ||
source /usr/local/share/virtualenvs/tap-dixa/bin/activate | ||
pip install -U 'pip<19.2' 'setuptools<51.0.0' | ||
pip install .[dev] | ||
- run: | ||
name: 'JSON Validator' | ||
command: | | ||
source /usr/local/share/virtualenvs/tap-tester/bin/activate | ||
stitch-validate-json tap_dixa/schemas/*.json | ||
- run: | ||
name: 'Pylint' | ||
command: | | ||
source /usr/local/share/virtualenvs/tap-dixa/bin/activate | ||
pip install pylint==2.14.1 | ||
pylint tap_dixa --disable C,W,R,no-member | ||
workflows: | ||
version: 2 | ||
commit: | ||
jobs: | ||
- build: | ||
context: circleci-user | ||
build_daily: | ||
triggers: | ||
- schedule: | ||
cron: "0 0 * * *" | ||
filters: | ||
branches: | ||
only: | ||
- master | ||
jobs: | ||
- build: | ||
context: circleci-user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.