Skip to content

Commit 04b0705

Browse files
committed
environ.get(QIITA_ROOTCA_CERT)
1 parent 6b21778 commit 04b0705

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/qiita-ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ jobs:
118118
run: |
119119
conda activate qiita_client
120120
export QIITA_ROOTCA_CERT=`pwd`/qiita-dev/qiita_core/support_files/ci_rootca.crt
121-
export QIITA_SERVER_CERT=$QIITA_ROOTCA_CERT
122121
export QIITA_CONFIG_FP=`pwd`/qiita-dev/qiita_core/support_files/config_test_local.cfg
123122
export QIITA_CLIENT_DEBUG_LEVEL=DEBUG
124123
nosetests --with-doctest --with-coverage --cover-package=qiita_client

qiita_client/testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def setUpClass(cls):
2424
cls.client_id = '19ndkO3oMKsoChjVVWluF7QkxHRfYhTKSFbAVt8IhK7gZgDaO4'
2525
cls.client_secret = ('J7FfQ7CQdOxuKhQAf1eoGgBAE81Ns8Gu3EKaWFm3IO2JKh'
2626
'AmmCWZuabe0O5Mp28s1')
27-
cls.rootca = environ.get('QIITA_ROOTCA_CERT', None)
27+
cls.rootca = environ.get('QIITA_ROOTCA_CERT')
2828
qiita_port = int(environ.get('QIITA_PORT', 8383))
2929

3030
# do not rely on defining ca_cert for these tests. Instead append

0 commit comments

Comments
 (0)