Skip to content

Commit

Permalink
chore(py3): bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiaqi Liu committed Nov 21, 2019
1 parent db289d1 commit 67b197a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ addict==0.2.7
Flask==1.1.1
Flask-Cors==1.9.0
gen3authz==0.2.1
Jinja2==2.7.3
Jinja2==2.10.1
lxml==4.4.1
MarkupSafe==0.23
PyYAML==5.1
Expand All @@ -23,15 +23,15 @@ elasticsearch==1.2.0
itsdangerous==0.24
requests== 2.22.0
six==1.12.0
urllib3==1.24.1
urllib3==1.24.2
dicttoxml==1.5.8
sqlalchemy==1.3.5
python-dateutil==2.4.2
graphene==2.0.1
graphql-relay==0.4.5
promise==2.2.1
Flask-SQLAlchemy-Session==1.1
-e git+https://git@github.com/uc-cdis/psqlgraph.git@chore/py3#egg=psqlgraph
psqlgraph==3.0.0
-e git+https://git@github.com/uc-cdis/gdcdatamodel.git@chore/py3#egg=gen3datamodel
-e git+https://git@github.com/uc-cdis/cdis_oauth2client.git@chore/py3#egg=cdis_oauth2client
-e git+https://git@github.com/NCI-GDC/cdisutils.git@8a8e599fdab5ade9bd8c586132d974a102e5d72d#egg=cdisutils
Expand Down
11 changes: 0 additions & 11 deletions tests/graphql/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,18 +88,10 @@ def populated_blgsp(client, submitter, pg_driver_clean):
def failed_deletion_transaction(client, submitter, pg_driver_clean, populated_blgsp):
with pg_driver_clean.session_scope():
node_id = pg_driver_clean.nodes(models.Sample).first().node_id
print("node_id_91", node_id)
print("node_id_92", node_id)
delete_path = '/v0/submission/CGCI/BLGSP/entities/{}'.format(node_id)
print(delete_path)
r = client.delete(
delete_path,
headers=submitter)
print(client)
print(submitter)
print("95")
print(r.status_code)
print(r.json)
assert r.status_code == 400, r.data
return str(r.json['transaction_id'])

Expand All @@ -116,8 +108,5 @@ def failed_upload_transaction(client, submitter, pg_driver_clean):
'how_heavy': 'no',
}),
headers=submitter)
print("115")
print(r.json)
print(r.status_code)
assert r.status_code == 400, r.data
return str(r.json['transaction_id'])

0 comments on commit 67b197a

Please sign in to comment.