forked from sympy/sympy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request sympy#8361 from sympy/0.7.6
0.7.6
- Loading branch information
Showing
33 changed files
with
452 additions
and
186 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 |
---|---|---|
|
@@ -168,6 +168,15 @@ Venkatesh Halli <[email protected]> Venkatesh H <venkatesh.fatality@g | |
Kaushik Varanasi <[email protected]> kaushik <[email protected]> | ||
Leonid Blouvshtein <[email protected]> leonidb <[email protected]> | ||
Duane Nykamp <[email protected]> dqnykamp <[email protected]> | ||
Shukla <[email protected]> gamecoder2012 <[email protected]> | ||
Mihai A. Ionescu <[email protected]> extremeplay <[email protected]> | ||
Sarwar Chahal <[email protected]> sarwarc <[email protected]> | ||
Hamish Dickson <[email protected]> mishyTheBear <[email protected]> | ||
Peter Brady <[email protected]> Peter Brady <[email protected]> | ||
Peter Brady <[email protected]> peter <[email protected]> | ||
Craig A. Stoudt <[email protected]> cstoudt <[email protected]> | ||
Raj <[email protected]> raj454raj <[email protected]> | ||
John V. Siratt <[email protected]> John Siratt <[email protected]> | ||
Ted Dokos <[email protected]> ted-dokos <[email protected]> | ||
Akshat Jain <[email protected]> akshat_jain <[email protected]> | ||
Akshat Jain <[email protected]> jugnu <[email protected]> |
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
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 |
---|---|---|
|
@@ -347,15 +347,24 @@ Fawaz Alazemi <[email protected]> | |
Ambar Mehrotra <[email protected]> | ||
Mark Shoulson <[email protected]> | ||
David P. Sanders <[email protected]> | ||
Peter Brady <[email protected]> | ||
John V. Siratt <[email protected]> | ||
Sarwar Chahal <[email protected]> | ||
Nathan Woods <[email protected]> | ||
Colin B. Macdonald <[email protected]> | ||
Marcus Näslund <[email protected]> | ||
Clemens Novak <[email protected]> | ||
Craig A. Stoudt <[email protected]> | ||
Mridul Seth <[email protected]> | ||
Raj <[email protected]> | ||
Mihai A. Ionescu <[email protected]> | ||
immerrr <[email protected]> | ||
Leonid Blouvshtein <[email protected]> | ||
Peleg Michaeli <[email protected]> | ||
Chai Wah Wu <[email protected]> | ||
ck Lux <[email protected]> | ||
zsc347 <[email protected]> | ||
Hamish Dickson <[email protected]> | ||
Michael Gallaspy <[email protected]> | ||
Roman Inflianskas <[email protected]> | ||
Duane Nykamp <[email protected]> | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,64 @@ | ||
""" | ||
Execute like this: | ||
$ python bin/generate_test_list.py | ||
tests = [ | ||
'sympy.concrete.tests', | ||
'sympy.core.tests', | ||
'sympy.functions.combinatorial.tests', | ||
'sympy.functions.elementary.tests', | ||
'sympy.functions.special.tests', | ||
'sympy.geometry.tests', | ||
'sympy.integrals.tests', | ||
'sympy.matrices.tests', | ||
'sympy.ntheory.tests', | ||
'sympy.numerics.tests', | ||
'sympy.parsing.tests', | ||
'sympy.physics.tests', | ||
'sympy.plotting.tests', | ||
'sympy.polynomials.tests', | ||
'sympy.printing.tests', | ||
'sympy.series.tests', | ||
'sympy.simplify.tests', | ||
'sympy.solvers.tests', | ||
'sympy.specfun.tests', | ||
'sympy.test_external', | ||
'sympy.utilities.tests', | ||
] | ||
""" | ||
|
||
from __future__ import print_function | ||
|
||
from glob import glob | ||
|
||
|
||
def get_paths(level=15): | ||
""" | ||
Generates a set of paths for testfiles searching. | ||
Example: | ||
>>> get_paths(2) | ||
['sympy/test_*.py', 'sympy/*/test_*.py', 'sympy/*/*/test_*.py'] | ||
>>> get_paths(6) | ||
['sympy/test_*.py', 'sympy/*/test_*.py', 'sympy/*/*/test_*.py', | ||
'sympy/*/*/*/test_*.py', 'sympy/*/*/*/*/test_*.py', | ||
'sympy/*/*/*/*/*/test_*.py', 'sympy/*/*/*/*/*/*/test_*.py'] | ||
""" | ||
wildcards = ["/"] | ||
for i in range(level): | ||
wildcards.append(wildcards[-1] + "*/") | ||
p = ["sympy" + x + "test_*.py" for x in wildcards] | ||
return p | ||
|
||
g = [] | ||
for x in get_paths(): | ||
g.extend(glob(x)) | ||
g = [".".join(x.split("/")[:-1]) for x in g] | ||
g = list(set(g)) | ||
g.sort() | ||
print("tests = [") | ||
for x in g: | ||
print(" '%s'," % x) | ||
print(" ]") |
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
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
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
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
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
Oops, something went wrong.