-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0602116
commit 14f12ab
Showing
1 changed file
with
7 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
language: python | ||
sudo: required | ||
|
||
python: | ||
- "3.7" | ||
- "3.8" | ||
|
||
before_install: | ||
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; | ||
bash ./miniconda.sh -b -p ${HOME}/miniconda; | ||
export PATH=${HOME}/miniconda/bin:$PATH; | ||
conda install --yes python="3.7" pyqt; | ||
conda install --yes python="3.8" pyqt; | ||
pip install -r requirements.txt | ||
|
||
script: | ||
- python Arduino_PyQt_demo_with_multithreading.py | ||
- python Arduino_PyQt_demo_with_multithreading__minimalistic.py | ||
- python Arduino_PyQt_demo_without_multithreading.py | ||
- python foo_bar.py | ||
- python foo_baz.py | ||
- python demo_A_GUI_full.py | ||
- python demo_B_GUI_minimal.py | ||
- python demo_C_singlethread_for_comparison.py | ||
- python demo_D_no_GUI.py | ||
- python demo_E_no_GUI.py |