Skip to content

Commit

Permalink
Merge pull request Qiskit#50 from IBM-Q-Software/49-travis-setup
Browse files Browse the repository at this point in the history
49 travis setup first attempt
  • Loading branch information
LucyXing authored and GitHub Enterprise committed Aug 9, 2021
2 parents bd595fb + 5264dcc commit f92b841
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
language: python

os: linux

install:
- pip install -U -r requirements.txt
- pip install -e .

jobs:
python: 3.8
script: python run_tests.py
5 changes: 5 additions & 0 deletions run_tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import os
import glob

for file in glob.iglob("test/*/test*.py"):
os.system("python3 " + file)

0 comments on commit f92b841

Please sign in to comment.