Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install qiskit in ci env #1201

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ stage_generic: &stage_generic
- mkdir out && cd out && cmake $CMAKE_FLAGS ..
script:
# Compile the executables and run the tests.
- make && ARGS="-V" make test
- make && pip install -e .. && ARGS="-V" make test

stage_linux: &stage_linux
<<: *stage_generic
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
# Linter and style check (GNU/Linux, Python 3.5)
- stage: lint and pure python test
<<: *stage_linux_no_compile
script: make style VERBOSE="" && make lint VERBOSE=""
script: pip install .. && make style VERBOSE="" && make lint VERBOSE=""

# Run the tests against without compilation (GNU/Linux, Python 3.5)
- stage: lint and pure python test
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ install:
- pip.exe install stestr
# TODO(mtreinish): uncomment this when testing-cabal/subunit#33 is fixed
# - pip.exe install junitxml
- pip.exe install -e .

# Use py.test for output of xunit test results.
test_script:
Expand Down