From 64eb4af64d66658749269986e3fe6246e5020bbc Mon Sep 17 00:00:00 2001 From: kspeer Date: Tue, 21 Sep 2021 14:39:21 +0000 Subject: [PATCH 1/2] update config --- .circleci/config.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0cf1a65..8ea296f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,19 +11,21 @@ jobs: - run: name: 'Setup virtual env' command: | + aws s3 cp s3://com-stitchdata-dev-deployment-assets/environments/tap-tester/tap_tester_sandbox dev_env.sh virtualenv -p python3 /usr/local/share/virtualenvs/tap-zendesk source /usr/local/share/virtualenvs/tap-zendesk/bin/activate pip install .[test] - run: name: 'pylint' command: | + source dev_env.sh source /usr/local/share/virtualenvs/tap-zendesk/bin/activate - make test - - add_ssh_keys + pylint tap_zendesk -d "$PYLINT_DISABLE_LIST" + nosetests test/unittests + - run: name: 'Integration Tests' command: | - aws s3 cp s3://com-stitchdata-dev-deployment-assets/environments/tap-tester/tap_tester_sandbox dev_env.sh source dev_env.sh source /usr/local/share/virtualenvs/tap-tester/bin/activate pip install 'zenpy==2.0.24' From f9cf92e25a8e3836e14b3d1bcadf2c49835f3c3c Mon Sep 17 00:00:00 2001 From: kspeer Date: Tue, 21 Sep 2021 14:44:44 +0000 Subject: [PATCH 2/2] fix pylint --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8ea296f..9c98b40 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,7 +20,7 @@ jobs: command: | source dev_env.sh source /usr/local/share/virtualenvs/tap-zendesk/bin/activate - pylint tap_zendesk -d "$PYLINT_DISABLE_LIST" + pylint tap_zendesk -d "$PYLINT_DISABLE_LIST,logging-not-lazy" nosetests test/unittests - run: