Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
e303107e
Commit
e303107e
authored
Apr 16, 2019
by
Jason Madden
Committed by
GitHub
Apr 16, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1398 from gevent/issue1395
Test libuv and c-ares in non-embedded cases
parents
b55a62e3
b809e58a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
.travis.yml
.travis.yml
+1
-1
Makefile
Makefile
+3
-3
No files found.
.travis.yml
View file @
e303107e
...
...
@@ -18,11 +18,11 @@ env:
matrix
:
# These are ordered to get as much diversity in the
# first group of parallel runs (4) as possible
-
TASK=test-py27-noembed
-
TASK=test-py37
-
TASK=test-py27
-
TASK=test-pypy
-
TASK=test-py36
-
TASK=test-py27-noembed
-
TASK=test-pypy3
-
TASK=test-py35
...
...
Makefile
View file @
e303107e
...
...
@@ -103,7 +103,7 @@ leaktest: test_prelim
@
${PYTHON}
scripts/travis.py fold_end default
bench
:
${PYTHON}
benchmarks/bench_sendall.py
--loops
3
--processes
2
--values
2
--warmups
2
--quiet
time
${PYTHON}
benchmarks/bench_sendall.py
--loops
3
--processes
2
--values
2
--warmups
2
--quiet
travis_test_linters
:
make lint
...
...
@@ -168,7 +168,7 @@ test-py27: $(PY27)
PYTHON
=
python2.7.16
PATH
=
$(BUILD_RUNTIMES)
/versions/python2.7.16/bin:
$(PATH)
make develop leaktest cffibackendtest coverage_combine
test-py35
:
$(PY35)
PYTHON
=
python3.5.6
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.5.6/bin:
$(PATH)
GEVENTTEST_COVERAGE
=
1 make develop basictest coverage_combine
PYTHON
=
python3.5.6
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.5.6/bin:
$(PATH)
make develop basictest
test-py36
:
$(PY36)
PYTHON
=
python3.6.8
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.6.8/bin:
$(PATH)
make develop lint basictest
...
...
@@ -192,4 +192,4 @@ test-py27-noembed: $(PY27)
@
python2.7.16 scripts/travis.py fold_start conf_libuv
"Configuring libuv"
cd
deps/libuv
&&
./autogen.sh
&&
./configure
--disable-static
&&
make
@
python2.7.16 scripts/travis.py fold_end conf_libuv
CPPFLAGS
=
"-Ideps/libev -Ideps/c-ares -Ideps/libuv/include"
LDFLAGS
=
"-Ldeps/libev/.libs -Ldeps/c-ares/.libs -Ldeps/libuv/.libs"
LD_LIBRARY_PATH
=
"
$(PWD)
/deps/libev/.libs:
$(PWD)
/deps/c-ares/.libs:
$(PWD)
/deps/libuv/.libs"
EMBED
=
0
GEVENT_LOOP
=
libev-cext
PYTHON
=
python2.7.16
PATH
=
$(BUILD_RUNTIMES)
/versions/python2.7.16/bin:
$(PATH)
make develop basic
test
CPPFLAGS
=
"-Ideps/libev -Ideps/c-ares -Ideps/libuv/include"
LDFLAGS
=
"-Ldeps/libev/.libs -Ldeps/c-ares/.libs -Ldeps/libuv/.libs"
LD_LIBRARY_PATH
=
"
$(PWD)
/deps/libev/.libs:
$(PWD)
/deps/c-ares/.libs:
$(PWD)
/deps/libuv/.libs"
EMBED
=
0
PYTHON
=
python2.7.16
PATH
=
$(BUILD_RUNTIMES)
/versions/python2.7.16/bin:
$(PATH)
make develop alltest cffibackend
test
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment