Skip remote tests in CI #85
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Qiskit tests | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
stable: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
env: | |
python-version: "3.9" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ env.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ env.python-version }} | |
- name: Set up tox env | |
run: | | |
pver=${{ env.python-version }} | |
tox_env="-epy${pver/./}" | |
echo tox_env | |
echo TOX_ENV=$tox_env >> $GITHUB_ENV | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install -r requirements-dev.txt | |
pip install qiskit --upgrade | |
- name: Test using tox envs | |
env: | |
QS_TOKEN: ${{ secrets.QUANTUM_SERVICES_TOKEN }} | |
run: | | |
tox ${{ env.TOX_ENV }} | |
dev: | |
runs-on: ubuntu-latest | |
env: | |
python-version: "3.9" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ env.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ env.python-version }} | |
- name: Set up tox env | |
run: | | |
pver=${{ env.python-version }} | |
tox_env="-epy${pver/./}" | |
echo tox_env | |
echo TOX_ENV=$tox_env >> $GITHUB_ENV | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install -r requirements-dev.txt | |
git clone https://github.com/Qiskit/qiskit.git | |
cd qiskit | |
pip install cython | |
pip uninstall qiskit --yes | |
pip install . | |
- name: Test using tox envs | |
env: | |
QS_TOKEN: ${{ secrets.QUANTUM_SERVICES_TOKEN }} | |
run: | | |
tox ${{ env.TOX_ENV }} |