summaryrefslogtreecommitdiff
path: root/networkx/classes/tests/test_multidigraph.py
Commit message (Expand)AuthorAgeFilesLines
* Lint using Ruff (#6371)danieleades2023-02-191-7/+7
* Improve test coverage for multidigraph class (#6131)Alimi Qudirah2022-10-271-0/+4
* Attempt to reverse slowdown from hasattr needed for cached_property (#5836)Dan Schult2022-07-161-4/+4
* Update tests in base class and simple rename in convert.py (#5848)Dan Schult2022-07-151-2/+2
* Use isort with pre-commit to enforce import guidelines (#5659)Mridul Seth2022-06-021-2/+4
* Cache edges, degree, adj properties of Graph classes (#5614)Dan Schult2022-05-111-0/+9
* Fixed wrong dict factory usage on MultiDiGraph (#5456)FabianBall2022-04-041-0/+45
* Refactor testing utilities (#4829)Jarrod Millman2021-05-261-3/+3
* Format w/ blackJarrod Millman2020-07-101-120/+160
* Upgrade to Py36 syntaxJarrod Millman2020-01-011-1/+1
* Remove shebang from non-executablesJarrod Millman2019-11-111-1/+0
* avoid duplicate tests due to imports (#3684)Dan Schult2019-10-241-4/+5
* PEP8 fixesJarrod Millman2019-10-181-4/+4
* PEP8 fixes to testsJarrod Millman2019-10-181-44/+44
* Remove nose from classesJarrod Millman2019-10-121-14/+14
* Convert nose.tools.assert_* functions into assertsJarrod Millman2019-10-121-107/+107
* Fix multidigraph checksStefan van der Walt2019-10-121-18/+17
* Use class methods for class setup/teardownStefan van der Walt2019-10-121-16/+17
* First round of pytest fixesStefan van der Walt2019-10-121-2/+2
* Deleted a duplicated test_random_graph in bipartite.tests.test_genera… (#2790)Mads Jensen2018-02-021-3/+3
* Simplify base classes. (#2604)Dan Schult2017-08-121-7/+7
* Next attempt to meld graphviews with base classes (#2593)Dan Schult2017-08-121-3/+1
* Allow more flexible multigraph add_edges_from options (#2519)Dan Schult2017-07-171-28/+41
* Doc ordered graph classes (#2516)Jarrod Millman2017-07-161-201/+200
* Move data structure to private names and replace with readonly structures (#2...Dan Schult2017-06-261-40/+38
* Base class testsAric Hagberg2016-07-311-8/+15
* 2205: Adding support for specific data retrival of edges through in_edges (Di...Pim Otte2016-07-301-0/+15
* Fix add_path in tests for edge_subgraphDan Schult2016-02-071-23/+23
* Adds an edge-induced subgraph method for graphs.Jeffrey Finkelstein2016-01-141-0/+25
* Remove degree_iter(),now degree() returns an integer for single node and iter...Mridul Seth2015-06-271-45/+16
* Merge pull request #1589 from MridulS/succprediterDan Schult2015-06-171-10/+10
|\
| * Remove successors_iter() and predecessors_iter(). G.successors() and G.predec...Mridul Seth2015-06-121-10/+10
* | Remove edges_iter, G.edges() now returns an iterator instead of listMridul Seth2015-06-171-13/+13
* | Fix big for iterator input for digraph.degreeDan Schult2015-06-161-0/+6
|/
* Add tests to classes to cover missing cases.Aric Hagberg2011-11-181-0/+10
* Split Graph class tests that rely on data structure or edge attributes.Dan Schult2011-07-281-121/+107
* Change degree() and friends to accept weight= keyword instead of weighted=Dan Schult2011-06-181-2/+6
* 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-091-0/+16
* More imports cleanup and exceptions fixed.Loïc Séguin-C.2011-02-101-2/+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-281-0/+7
* Merging py3k-1.2 branch into trunk. Addresses #348loicseguin2010-08-021-4/+3
* Remove with_labels keyword from *degree() methods.aric2010-04-151-9/+9
* Merge attrgraph branch into trunkaric2009-08-111-63/+99
* Merged multigraph-dict branch 1138:1161 into trunk. Addresses #225aric2009-02-271-40/+60
* Fix case in MultiGraph and MultiDiGraph where twoaric2009-01-121-0/+11
* Add in_edges_iter() and in_edges() to DiGraph and MultiDiGrapharic2008-12-211-7/+53
* Unify tests and code in add_edges_from() for all classes.dschult2008-12-021-4/+11