Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sakia
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
clients
python
sakia
Commits
9b7e9b7b
Commit
9b7e9b7b
authored
12 years ago
by
Donald Stufft
Browse files
Options
Downloads
Patches
Plain Diff
Move ld path to .travis.yml and exclude extra pep8/lint runs
parent
f86e77b3
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.travis.yml
+17
-3
17 additions, 3 deletions
.travis.yml
tasks.py
+1
-5
1 addition, 5 deletions
tasks.py
with
18 additions
and
8 deletions
.travis.yml
+
17
−
3
View file @
9b7e9b7b
...
@@ -10,7 +10,21 @@ install:
...
@@ -10,7 +10,21 @@ install:
-
'
if
[
-n
"${VAR+x}"
];
then:
invoke
install-nacl
--library=$NACL;
fi'
-
'
if
[
-n
"${VAR+x}"
];
then:
invoke
install-nacl
--library=$NACL;
fi'
-
'
if
[
-n
"${VAR+x}"
];
then:
invoke
install
--dev;
fi'
-
'
if
[
-n
"${VAR+x}"
];
then:
invoke
install
--dev;
fi'
script
:
script
:
-
invoke tests --suite=$SUITE
--libpath=/usr/local/lib
-
invoke tests --suite=$SUITE
env
:
env
:
-
NACL=libsodium SUITE=unit
global
:
-
"
SUITE=pep8,lint"
-
LD_LIBRARY_PATH=/usr/local/lib
-
LD_RUN_PATH=/usr/local/lib
matrix
:
-
NACL=libsodium SUITE=unit
-
"
SUITE=pep8,lint"
matrix
:
exclude
:
-
python
:
"
2.6"
env
:
"
SUITE=pep8,lint"
-
python
:
"
2.7"
env
:
"
SUITE=pep8,lint"
-
python
:
"
3.2"
env
:
"
SUITE=pep8,lint"
-
python
:
"
pypy"
env
:
"
SUITE=pep8,lint"
This diff is collapsed.
Click to expand it.
tasks.py
+
1
−
5
View file @
9b7e9b7b
...
@@ -66,11 +66,7 @@ def install(dev=False):
...
@@ -66,11 +66,7 @@ def install(dev=False):
@task
@task
def
tests
(
libpath
=
None
,
suite
=
None
):
def
tests
(
suite
=
None
):
if
libpath
is
not
None
:
os
.
environ
[
"
LD_LIBRARY_PATH
"
]
=
libpath
os
.
environ
[
"
LD_RUN_PATH
"
]
=
libpath
if
suite
is
None
:
if
suite
is
None
:
suite
=
set
([
"
pep8
"
,
"
lint
"
,
"
unit
"
])
suite
=
set
([
"
pep8
"
,
"
lint
"
,
"
unit
"
])
else
:
else
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment