Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3284ddc
Add .travis.yml file running flake8 on the scripts
sbesson Sep 20, 2013
59ef6f2
Merge remote-tracking branch 'origin/dev_4_4' into travis
sbesson Sep 20, 2013
b759912
Fix flake9 output for Channel_Offsets script
sbesson Sep 20, 2013
05bd824
Fix triple-quoted string
sbesson Sep 20, 2013
9944473
Fix flake8 output for Combine_Images script
sbesson Sep 20, 2013
13a4325
Fix flake8 output for Dataset_To_Plate script
sbesson Sep 20, 2013
49156b9
Fix flake8 output for Images_From_ROIs script
sbesson Sep 20, 2013
1186125
Fix flake8 output for FLIM_initialise script
sbesson Sep 20, 2013
0301b2b
Fix flake8 output for Populate_ROI.py script
sbesson Sep 20, 2013
c1d10db
Fix flake8 output for Thumbnail_Figure.py script
sbesson Sep 20, 2013
08be3eb
Fix flake8 output for Split_View_Figure.py script
sbesson Sep 20, 2013
7596842
Fix flake8 output for ROI_Split_Figure.py script
sbesson Sep 20, 2013
bce8546
Fix flake8 output for Movie_ROI_Figure.py script
sbesson Sep 20, 2013
b8cb67b
Fix flake8 output for Movie_Figure.py script
sbesson Sep 20, 2013
892f588
Fix flake8 output for Make_Movie.py
sbesson Sep 21, 2013
8b80623
Fix flake8 output for Batch_Image_Export.py
sbesson Sep 21, 2013
a641a2a
Fix flake8 output for Plot_Profile.py
sbesson Sep 21, 2013
7541804
Fix flake8 output for Kymograph_Analysis.py
sbesson Sep 21, 2013
8eea266
Fix flake8 output for Kymograph.py
sbesson Sep 21, 2013
5bb48e2
Review import of omero.constants across the board
sbesson Sep 21, 2013
d53d073
Merge remote-tracking branch 'origin/dev_4_4' into travis
sbesson Sep 21, 2013
24c96cb
Fix undefined name 'fig' warning from flake8
sbesson Sep 21, 2013
10f2427
Fix imports
sbesson Sep 22, 2013
4877a51
Fix ProjectionType import
sbesson Sep 22, 2013
cbbf9e7
Fix ProjectionType redefinition
sbesson Sep 22, 2013
01634e1
Install flake8 as part of the install step of Travis
sbesson Sep 23, 2013
b0c3428
Run flake8 in verbose mode
sbesson Sep 23, 2013
b601e79
Fix getLabels when using image names as the label
sbesson Sep 23, 2013
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
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: python
python:
- "2.6"
virtualenv:
system_site_packages: true
install: pip install flake8 --use-mirrors
script: flake8 -v .
Loading