Skip to content
This repository has been archived by the owner on Jul 13, 2022. It is now read-only.

Commit

Permalink
Move test_experiment_data_integration tests (qiskit-community#313)
Browse files Browse the repository at this point in the history
* move test_experiment_data_integration tests

* remove print statement  

* remove comment

* fix lint

* cleanup imports, remove todos

* fix lint again

* add github actions ci

Co-authored-by: Christopher J. Wood <[email protected]>
Co-authored-by: Helena Zhang <[email protected]>
  • Loading branch information
3 people authored Dec 8, 2021
1 parent b09f1bf commit f7dba0d
Show file tree
Hide file tree
Showing 3 changed files with 868 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/cron-staging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Cron-staging
on:
schedule:
- cron: "0 4 * * *"
jobs:
experiment-integration:
name: experiment-integration
runs-on: macOS-latest
env:
QISKIT_IBM_STAGING_API_TOKEN: ${{ secrets.QISKIT_IBM_STAGING_API_TOKEN }}
QISKIT_IBM_STAGING_API_URL: ${{ secrets.QISKIT_IBM_STAGING_API_URL }}
QISKIT_IBM_STAGING_DEVICE: "ibmq_qasm_simulator"
QISKIT_IBM_USE_STAGING_CREDENTIALS: True
LOG_LEVEL: DEBUG
STREAM_LOG: True
QISKIT_IN_PARALLEL: True
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Deps
run: python -m pip install -U tox setuptools virtualenv wheel
- name: Run Tests
run: tox -epy38 -- -n test/database_service/test_experiment_data_integration.py
Loading

0 comments on commit f7dba0d

Please sign in to comment.