summaryrefslogtreecommitdiff
path: root/networkx/classes/tests
Commit message (Expand)AuthorAgeFilesLines
* Add is_empty() and update is_weighted() to cover empty graph.chebee7i2015-04-291-0/+9
* Rename to is_negatively_weighted, minor docstring edits.chebee7i2015-04-291-12/+27
* Some code fixesThodoris Sotiropoulos2015-04-271-9/+9
* Merge branch 'master' into checking-weightsThodoris Sotiropoulos2015-04-221-1/+1
|\
| * Fix copyrightsJGab2015-04-211-1/+1
* | Style changesKonstantinos Karakatsanis2015-04-161-1/+1
* | Add negative_weights functionKonstantinos Karakatsanis2015-04-151-0/+21
* | Add weight_edges functionThodoris Sotiropoulos2015-04-111-0/+19
|/
* Remove compatibility code for Python 2.6.chebee7i2015-02-161-10/+0
* Add smoke tests for ordered graph variants.chebee7i2015-02-161-0/+26
* Expand data keyword in G.edges and add default dataDan Schult2015-01-171-0/+5
* Comment out timing nosetests due to travis variation.Dan Schult2015-01-101-9/+11
* Make timing test ratio a bit more forgiving for TravisCI.chebee7i2015-01-061-4/+4
* Improve reporting of errors for timing tests.Dan Schult2015-01-061-15/+16
* Remove timingtest of numpy_matrix and add test G.copy()Dan Schult2015-01-061-1/+2
* Add timing tests and baseline classes to compare to.Dan Schult2015-01-062-0/+4996
* Meld special classes with base classes.Dan Schult2015-01-021-10/+10
* Better proposed structure for OrderedGraph and co.Dan Schult2015-01-011-0/+121
* Allow set_*_attributes functions to work with single attribute value.chebee7i2014-05-151-0/+92
* Move common_neighbors out of link_predictionysitu2014-05-101-60/+103
* assert_in isn't available in TravisCI nose.chebee7i2014-04-291-1/+1
* Use assert_equal and assert_in.chebee7i2014-04-291-4/+4
* Added non-edges enumeration functionKemal Maulana2014-04-281-0/+26
* Fix density to handle single node with self loop case.Aric Hagberg2012-12-281-0/+9
* Fix/adjust/remove/modify tests that depend on dictionary ordering.Aric Hagberg2012-07-081-21/+18
* Allow .remove_edges_from() to work with 4-tuples (u,v,k,d) for multi(di)graph.Dan Schult2012-06-201-1/+16
* Fix Python2-ismAric Hagberg2012-04-151-1/+1
* Add all_neighbors and non_neighbors. Addresses #714Aric Hagberg2012-04-151-0/+50
* Change node lookups to G.node instead of G.adjDan Schult2012-02-051-0/+4
* Add tests to classes to cover missing cases.Aric Hagberg2011-11-184-0/+43
* Split Graph class tests that rely on data structure or edge attributes.Dan Schult2011-07-284-642/+613
* Fix typos in tests for edge methods that call neighbors.Dan Schult2011-06-181-4/+6
* Change degree() and friends to accept weight= keyword instead of weighted=Dan Schult2011-06-184-16/+33
* Add more tests for reverse()Aric Hagberg2011-06-091-3/+3
* DiGraph and MultiDigraph reverse(copy=True) methods don't make a proper copy ...Aric Hagberg2011-06-092-0/+32
* Make Graph.name a property that sets/gets Graph.graph['name']Aric Hagberg2011-05-161-1/+1
* More imports cleanup and exceptions fixed.Loïc Séguin-C.2011-02-108-15/+0
* Add MultiDiGraph in_edges() and out_edges() methods.Aric Hagberg2010-11-161-2/+2
* Fix bug in degree_iter(weighted=True) for MultiGraphs.Aric Hagberg2010-11-081-0/+2
* Add reciprocal option in to_undirected().Aric Hagberg2010-09-282-2/+14
* Fix bug in info() function. Closes #401aric2010-08-161-0/+19
* Switch old graph/digraph tests to unittest stylearic2010-08-105-1348/+618
* Remove duplicate test (tested in test_function.py)aric2010-08-091-20/+0
* Rework info() function to return a string.aric2010-08-071-19/+15
* Add back "info" function. Change keyword to file=aric2010-08-071-22/+22
* Remove iteritems 2ism and add test.aric2010-08-071-0/+12
* Merging py3k-1.2 branch into trunk. Addresses #348loicseguin2010-08-027-152/+186
* Add tests for function.pydschult2010-05-042-7/+113
* Use sorted(key=str) in doctests so they will work with Python3aric2010-04-242-17/+17
* Remove with_labels keyword from *degree() methods.aric2010-04-155-70/+62