Skip to content

Commit 93a061b

Browse files
Updates based on feedback
1 parent d994d89 commit 93a061b

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/qiita-ci.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
jobs:
88
# derived from https://github.com/actions/example-services/blob/master/.github/workflows/postgres-service.yml
99
main:
10-
# 7/16/24: confirm current ubuntu-latest is still 22.04.
1110
runs-on: ubuntu-latest
1211

1312
strategy:
@@ -80,7 +79,7 @@ jobs:
8079
run: |
8180
conda create --yes -n qiita_client python=${{ matrix.python-version }} pip nose flake8 coverage
8281
conda activate qiita_client
83-
pip install .
82+
pip --quiet install .
8483
8584
- name: Starting Main Services
8685
shell: bash -l {0}
@@ -120,7 +119,6 @@ jobs:
120119
conda activate qiita_client
121120
export QIITA_ROOTCA_CERT=`pwd`/qiita-dev/qiita_core/support_files/ci_rootca.crt
122121
export QIITA_CONFIG_FP=`pwd`/qiita-dev/qiita_core/support_files/config_test_local.cfg
123-
export PYTHONWARNINGS="ignore:Certificate for localhost has no \`subjectAltName\`"
124122
- uses: codecov/codecov-action@v3
125123
with:
126124
token: ${{ secrets.CODECOV_TOKEN }}

qiita_client/qiita_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ def get_job_info(self, job_id):
532532
logger.debug('Entered QiitaClient.get_job_info()')
533533
return self.get("/qiita_db/jobs/%s" % job_id)
534534

535-
def update_job_step(self, job_id, new_step, ignore_error=False):
535+
def update_job_step(self, job_id, new_step, ignore_error=True):
536536
"""Updates the current step of the job in the server
537537
538538
Parameters

0 commit comments

Comments
 (0)