<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/networkx.git/networkx/readwrite/tests/test_graph6.py, branch main</title>
<subtitle>github.com: networkx/networkx.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/'/>
<entry>
<title> Use isort with pre-commit to enforce import guidelines (#5659)</title>
<updated>2022-06-02T15:54:09+00:00</updated>
<author>
<name>Mridul Seth</name>
<email>seth.mridul@gmail.com</email>
</author>
<published>2022-06-02T15:54:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=5c0b11afb4c0882a070d522ef3fa41482ba935d3'/>
<id>5c0b11afb4c0882a070d522ef3fa41482ba935d3</id>
<content type='text'>
* Add isort to pre-commit

* Run isort on all python files (except __init__.py ones)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add isort to pre-commit

* Run isort on all python files (except __init__.py ones)</pre>
</div>
</content>
</entry>
<entry>
<title>Don't use graph6 with directed graphs (#5443) (#5444)</title>
<updated>2022-04-01T02:09:33+00:00</updated>
<author>
<name>Riccardo Bucco</name>
<email>riccardobucco@gmail.com</email>
</author>
<published>2022-04-01T02:09:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=c39511522b272bf65b6a415169cd48d1bf3ff5c1'/>
<id>c39511522b272bf65b6a415169cd48d1bf3ff5c1</id>
<content type='text'>
* Don't use graph6 with directed graphs (#5443)

* Parametrize graph6 tests

* Test graph6 on multigraphs</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Don't use graph6 with directed graphs (#5443)

* Parametrize graph6 tests

* Test graph6 on multigraphs</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor testing utilities (#4829)</title>
<updated>2021-05-26T15:59:54+00:00</updated>
<author>
<name>Jarrod Millman</name>
<email>jarrod.millman@gmail.com</email>
</author>
<published>2021-05-26T15:59:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=09b30ba69dd2e81a2728fd1259ca7b4d88470827'/>
<id>09b30ba69dd2e81a2728fd1259ca7b4d88470827</id>
<content type='text'>
* Refactor testing utilities

Change `assert_edges_equal`, `assert_graphs_equal`, and `assert_nodes_equal`
to be more pytest-idiomatic.
For example, `assert_edges_equal` becomes the Boolean function `edges_equal`
and then the assert is done the testing file
(i.e., `assert edges_equal(edges1, edges2)`).
This also makes these utility functions useful in nontesting situations
where you want to compare edges, but not raise an exception based on the result.

* Move testing utility functions

* Use new testing utilities

* Deprecate assert_*_equal testing utilities

* Document node, edge, and graph equality helper functions

* text nits.

* Update networkx/tests/test_convert_pandas.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Update networkx/readwrite/tests/test_sparse6.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Update networkx/readwrite/tests/test_graph6.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Update networkx/generators/tests/test_classic.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Update networkx/algorithms/tree/tests/test_operations.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Update networkx/algorithms/tree/tests/test_coding.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Update networkx/algorithms/tests/test_dag.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Update networkx/algorithms/minors/tests/test_contraction.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* add short equality description to docstring

* Suppress known warnings

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;
Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Refactor testing utilities

Change `assert_edges_equal`, `assert_graphs_equal`, and `assert_nodes_equal`
to be more pytest-idiomatic.
For example, `assert_edges_equal` becomes the Boolean function `edges_equal`
and then the assert is done the testing file
(i.e., `assert edges_equal(edges1, edges2)`).
This also makes these utility functions useful in nontesting situations
where you want to compare edges, but not raise an exception based on the result.

* Move testing utility functions

* Use new testing utilities

* Deprecate assert_*_equal testing utilities

* Document node, edge, and graph equality helper functions

* text nits.

* Update networkx/tests/test_convert_pandas.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Update networkx/readwrite/tests/test_sparse6.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Update networkx/readwrite/tests/test_graph6.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Update networkx/generators/tests/test_classic.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Update networkx/algorithms/tree/tests/test_operations.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Update networkx/algorithms/tree/tests/test_coding.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Update networkx/algorithms/tests/test_dag.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* Update networkx/algorithms/minors/tests/test_contraction.py

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;

* add short equality description to docstring

* Suppress known warnings

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;
Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Format w/ black</title>
<updated>2020-07-10T16:44:54+00:00</updated>
<author>
<name>Jarrod Millman</name>
<email>jarrod.millman@gmail.com</email>
</author>
<published>2020-07-10T06:12:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=b22d6b36ce0545995c99d233546e8a1fe7e27fc5'/>
<id>b22d6b36ce0545995c99d233546e8a1fe7e27fc5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade to Py36 syntax</title>
<updated>2020-01-01T22:17:42+00:00</updated>
<author>
<name>Jarrod Millman</name>
<email>jarrod.millman@gmail.com</email>
</author>
<published>2019-12-31T07:57:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=0cd14f622daa0b70dcb1b8f3404e70383354fceb'/>
<id>0cd14f622daa0b70dcb1b8f3404e70383354fceb</id>
<content type='text'>
find networkx -name \*.py -exec pyupgrade --py36-plus {} \;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
find networkx -name \*.py -exec pyupgrade --py36-plus {} \;
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable tests (#3678)</title>
<updated>2019-10-21T10:05:48+00:00</updated>
<author>
<name>Jarrod Millman</name>
<email>jarrod.millman@gmail.com</email>
</author>
<published>2019-10-21T10:05:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=ec17da50f29d12ce72bd59c87ecf81b1551fcf71'/>
<id>ec17da50f29d12ce72bd59c87ecf81b1551fcf71</id>
<content type='text'>
* Enable tests

* No need to use TestCase
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Enable tests

* No need to use TestCase
</pre>
</div>
</content>
</entry>
<entry>
<title>PEP8 fixes to tests</title>
<updated>2019-10-18T07:47:00+00:00</updated>
<author>
<name>Jarrod Millman</name>
<email>jarrod.millman@gmail.com</email>
</author>
<published>2019-10-18T03:51:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=dc73628a6291e470d76d42e9efaa6e09599d8ce8'/>
<id>dc73628a6291e470d76d42e9efaa6e09599d8ce8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused imports</title>
<updated>2019-10-12T16:21:57+00:00</updated>
<author>
<name>Jarrod Millman</name>
<email>jarrod.millman@gmail.com</email>
</author>
<published>2019-10-09T06:23:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=67bb8deac5e06fd89079ffa4ea37d58ae527bdb3'/>
<id>67bb8deac5e06fd89079ffa4ea37d58ae527bdb3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert nose.tools.assert_* functions into asserts</title>
<updated>2019-10-12T16:21:57+00:00</updated>
<author>
<name>Jarrod Millman</name>
<email>jarrod.millman@gmail.com</email>
</author>
<published>2019-10-09T05:18:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=75e0c43bef21f764c669244fb57f658b4afc94e9'/>
<id>75e0c43bef21f764c669244fb57f658b4afc94e9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove future imports needed by Py2</title>
<updated>2019-09-19T00:51:42+00:00</updated>
<author>
<name>Jarrod Millman</name>
<email>jarrod.millman@gmail.com</email>
</author>
<published>2019-09-19T00:19:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=05fc2d7cb654bc56bca6b92e9b599f038f24e0c5'/>
<id>05fc2d7cb654bc56bca6b92e9b599f038f24e0c5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
