summaryrefslogtreecommitdiff
path: root/networkx/classes/tests/test_graph.py
Commit message (Expand)AuthorAgeFilesLines
* Ignore weakrefs when testing for memory leak (#6466)Erik Welch2023-03-111-1/+14
* Improve test coverage for graph class (#6105)Alimi Qudirah2022-10-251-0/+5
* Add cache reset for when G._node is changed (#5894)Dan Schult2022-07-251-0/+5
* Attempt to reverse slowdown from hasattr needed for cached_property (#5836)Dan Schult2022-07-161-0/+7
* Use isort with pre-commit to enforce import guidelines (#5659)Mridul Seth2022-06-021-2/+3
* Cache edges, degree, adj properties of Graph classes (#5614)Dan Schult2022-05-111-1/+5
* Cache `nodes` property on Graph (#5600)Stefan van der Walt2022-05-081-0/+4
* Fixed wrong dict factory usage on MultiDiGraph (#5456)FabianBall2022-04-041-0/+13
* Fix graph_class usage in to_undirected method (#4912)Tomohiro Endo2021-06-221-0/+47
* Raise ValueError if None is added as a node. (#4892)Dan Schult2021-06-151-0/+11
* add special processing of `multigraph_input` upon graph init (#4823)Dan Schult2021-05-271-3/+0
* Refactor testing utilities (#4829)Jarrod Millman2021-05-261-46/+41
* Update black (#4814)Jarrod Millman2021-05-181-2/+2
* Skip memory leak test for PyPy (#4385)Dan Schult2020-11-241-0/+4
* TST: Refactor to improve coverage. (#4307)Ross Barnowski2020-10-311-2/+4
* Add nx.info to str dunder for graph classes (#4241)Ross Barnowski2020-10-091-1/+10
* Format w/ blackJarrod Millman2020-07-101-183/+216
* Add method to clear edges only (#3477)Paolo Lammens2020-07-051-0/+13
* Upgrade to Py36 syntaxJarrod Millman2020-01-011-4/+4
* Enable ThinGraph tests (#3681)Jarrod Millman2019-10-231-19/+11
* PEP8 fixesJarrod Millman2019-10-181-5/+9
* PEP8 fixes to testsJarrod Millman2019-10-181-7/+7
* Replace nose.raises with pytest.raises context managerJarrod Millman2019-10-121-16/+16
* remove tests of deprecated views and fix use of deprecated G.nodeDan Schult2019-10-121-23/+0
* Fix some warningsJarrod Millman2019-10-121-6/+6
* Remove unused importsJarrod Millman2019-10-121-4/+0
* Convert nose.tools.assert_* functions into assertsJarrod Millman2019-10-121-144/+144
* Fix graph/digraph testsStefan van der Walt2019-10-121-34/+45
* Use class methods for class setup/teardownStefan van der Walt2019-10-121-11/+12
* Add base class method `update` (#3028)Dan Schult2018-06-281-7/+64
* Remove cyclic reference in G.root_graph (#3014)Dan Schult2018-06-161-8/+33
* Remove circular references between graphs and views. (#3011)Dan Schult2018-06-141-0/+8
* change variable names to avoid kwargs clobber (#2824)Dan Schult2018-01-101-1/+1
* Removed unused imports (#2653)James Lamb2017-10-011-1/+0
* Add deprecated methods for moved base class methods. (#2639)Dan Schult2017-08-271-0/+17
* Deprecate node (#2633)Jarrod Millman2017-08-261-0/+6
* Simplify base classes. (#2604)Dan Schult2017-08-121-60/+60
* Next attempt to meld graphviews with base classes (#2593)Dan Schult2017-08-121-43/+42
* Doc ordered graph classes (#2516)Jarrod Millman2017-07-161-291/+293
* Move data structure to private names and replace with readonly structures (#2...Dan Schult2017-06-261-51/+56
* Add graph view classes for nodes/edge/degrees (#2458)Dan Schult2017-06-131-6/+10
* Change docstring in tests to avoid name with "fail" in testing output.Dan Schult2016-12-191-6/+4
* Apply suggestions from @hagberg on GH-2207.Valentin Lorentz2016-07-311-5/+5
* Fix tests failing because of ordering issues.Valentin Lorentz2016-07-301-39/+40
* Remove attr_dict from add_edges_from method.thegreathippo2016-05-011-7/+0
* Remove attr_dict from add_node, add_edgethegreathippo2016-05-011-1/+1
* Modified all add_node, add_edge, and add_edges_from methods.thegreathippo2016-04-261-8/+7
* Remove attr_dict calls to graph's add_node; replace with **.thegreathippo2016-04-261-15/+11
* Modified Graph.add_edge, Graph.add_edges_from, and test_add_edges_fromthegreathippo2016-04-251-2/+2
* Modified Graph.add_node and test_add_node.thegreathippo2016-04-251-1/+1