Skip to content

Commit 71f9f43

Browse files
committed
build test 2
1 parent 8d02bc7 commit 71f9f43

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/qiita-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
shell: bash -l {0}
7474
run: |
7575
conda activate qiita
76-
pip install qiita-dev/ --no-binary redbiom
76+
pip --quiet install qiita-dev/ --no-binary redbiom
7777
mkdir ~/.qiita_plugins
7878
7979
- name: Install Qiita plugins
@@ -90,7 +90,7 @@ jobs:
9090
run: |
9191
9292
conda activate qiita
93-
export QIITA_SERVER_CERT=`pwd`/qiita-dev/qiita_core/support_files/server.crt
93+
export QIITA_SERVER_CERT=`pwd`/qiita-dev/qiita_core/support_files/ci_rootca.crt
9494
export QIITA_CONFIG_FP=`pwd`/qiita-dev/qiita_core/support_files/config_test_local.cfg
9595
sed "s#/home/runner/work/qiita/qiita#${PWD}/qiita-dev/#g" `pwd`/qiita-dev/qiita_core/support_files/config_test.cfg > ${QIITA_CONFIG_FP}
9696
@@ -122,7 +122,7 @@ jobs:
122122
COVER_PACKAGE: ${{ matrix.cover_package }}
123123
run: |
124124
conda activate qiita_client
125-
export QIITA_SERVER_CERT=`pwd`/qiita-dev/qiita_core/support_files/server.crt
125+
export QIITA_SERVER_CERT=`pwd`/qiita-dev/qiita_core/support_files/ci_rootca.crt
126126
export QIITA_CONFIG_FP=`pwd`/qiita-dev/qiita_core/support_files/config_test_local.cfg
127127
128128
nosetests --with-doctest --with-coverage --cover-package=qiita_client

qiita_client/qiita_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def __init__(self, output_name, artifact_type, files, archive=None):
5757

5858
def __eq__(self, other):
5959
logger.debug('Entered ArtifactInfo.__eq__()')
60-
if type(self) != type(other):
60+
if type(self) is not type(other):
6161
return False
6262
if self.output_name != other.output_name or \
6363
self.artifact_type != other.artifact_type or \

0 commit comments

Comments
 (0)