diff --git a/2023-round-2/Schefflera-Arboricola/nx_tutorial_script.py b/2023-round-2/Schefflera-Arboricola/nx_tutorial_script.py new file mode 100644 index 00000000..19384864 --- /dev/null +++ b/2023-round-2/Schefflera-Arboricola/nx_tutorial_script.py @@ -0,0 +1,30 @@ +import networkx as nx +import matplotlib.pyplot as plt + +# Creating a NetworkX DiGraph (Directed Graph) object +G=nx.DiGraph() + +# Adding nodes of different types +nodes = [1, 'A', (3, 4), 'B', 5, 'C', (6, 7), 8, 'D', 'E'] + +G.add_nodes_from(nodes) + +# Adding multiple edges between nodes +edges = [(1, 'A'), ('A', (3, 4)), ('A', 5), ((3, 4), 'B'), (5, 'B'), ('B', 8), (8, 'C'), ('C', 'D'), ('D', 'E'), ('E', 1)] + +G.add_edges_from(edges) + +# Finding the shortest path between all pairs of nodes +shortest_paths=dict(nx.all_pairs_shortest_path(G)) + +# Printing the shortest paths +for source_node, paths in shortest_paths.items(): + for target_node,path in paths.items(): + if source_node!=target_node: + print("Shortest path from node",source_node, "to node",target_node, "is : ", path) + +# Plotting the graph using networkx.draw +pos=nx.spring_layout(G) +nx.draw(G, pos, with_labels=True, node_size=500) +plt.title('Directed Graph') +plt.show() \ No newline at end of file diff --git a/2023-round-2/Tanya-Rawat/nx_version.txt b/2023-round-2/Tanya-Rawat/nx_version.txt new file mode 100644 index 00000000..c4f1ba40 --- /dev/null +++ b/2023-round-2/Tanya-Rawat/nx_version.txt @@ -0,0 +1,2 @@ +3.1 + diff --git a/2023-round-2/Ytemiloluwa/nx_version.txt b/2023-round-2/Ytemiloluwa/nx_version.txt new file mode 100644 index 00000000..8c50098d --- /dev/null +++ b/2023-round-2/Ytemiloluwa/nx_version.txt @@ -0,0 +1 @@ +3.1 diff --git a/2023-round-2/akshayamadhuri/nx_dev_test_output.txt b/2023-round-2/akshayamadhuri/nx_dev_test_output.txt new file mode 100644 index 00000000..3cbb883f --- /dev/null +++ b/2023-round-2/akshayamadhuri/nx_dev_test_output.txt @@ -0,0 +1,103 @@ +networkx\readwrite\json_graph\tests\test_tree.py ... [ 90%] +networkx\readwrite\tests\test_adjlist.py .................. [ 90%] +networkx\readwrite\tests\test_edgelist.py .......................... [ 90%] +networkx\readwrite\tests\test_gexf.py ..................... [ 91%] +networkx\readwrite\tests\test_gml.py ......................... [ 91%] +networkx\readwrite\tests\test_graph6.py ............................... [ 92%] +networkx\readwrite\tests\test_graphml.py ........................................................... [ 93%] +networkx\readwrite\tests\test_leda.py .. [ 93%] +networkx\readwrite\tests\test_p2g.py ... [ 93%] +networkx\readwrite\tests\test_pajek.py ........ [ 93%] +networkx\readwrite\tests\test_sparse6.py ................ [ 94%] +networkx\readwrite\tests\test_text.py ................................. [ 94%] +networkx\tests\test_all_random_functions.py s [ 94%] +networkx\tests\test_convert.py ............... [ 95%] +networkx\tests\test_convert_numpy.py .................................................. [ 95%] +networkx\tests\test_convert_pandas.py ...................... [ 96%] +networkx\tests\test_convert_scipy.py .................... [ 96%] +networkx\tests\test_exceptions.py ....... [ 96%] +networkx\tests\test_import.py .. [ 96%] +networkx\tests\test_lazy_imports.py .... [ 97%] +networkx\tests\test_relabel.py .............................. [ 97%] +networkx\utils\tests\test__init.py . [ 97%] +networkx\utils\tests\test_decorators.py ................................... [ 98%] +networkx\utils\tests\test_heaps.py .. [ 98%] +networkx\utils\tests\test_mapped_queue.py .............................................. [ 99%] +networkx\utils\tests\test_misc.py ............................... [ 99%] +networkx\utils\tests\test_random_sequence.py .... [ 99%] +networkx\utils\tests\test_rcm.py .. [ 99%] +networkx\utils\tests\test_unionfind.py ..... [100%] + +================================================================ warnings summary ================================================================ +networkx\algorithms\operators\product.py:347 + C:\Users\aksha\networkx\networkx\algorithms\operators\product.py:347: DeprecationWarning: invalid escape sequence '\ ' + """Returns the specified power of a graph. + + compilation 12:4 + compilation 12:4: DeprecationWarning: + + random_tree is deprecated and will be removed in NX v3.4 + Use random_labeled_tree instead. + +networkx\drawing\tests\test_pylab.py:422 + C:\Users\aksha\networkx\networkx\drawing\tests\test_pylab.py:422: PytestUnknownMarkWarning: Unknown pytest.mark.mpl_image_compare - is this a typo? You can register custom marks to avoid this warning - for details, see https://docs.pytest.org/en/stable/how-to/mark.html + @pytest.mark.mpl_image_compare + +networkx\readwrite\tests\test_gml.py:557 + C:\Users\aksha\networkx\networkx\readwrite\tests\test_gml.py:557: DeprecationWarning: invalid octal escape sequence '\420' + "graph [edge [ source u'u\4200' target u'u\4200' ] " + +networkx\readwrite\tests\test_gml.py:558 + C:\Users\aksha\networkx\networkx\readwrite\tests\test_gml.py:558: DeprecationWarning: invalid octal escape sequence '\420' + + "node [ id u'u\4200' label b ] ]" + +networkx/algorithms/tree/tests/test_coding.py::TestNestedTuple::test_decoding +networkx/algorithms/tree/tests/test_coding.py::TestNestedTuple::test_decoding +networkx/algorithms/tree/tests/test_coding.py::TestNestedTuple::test_decoding +networkx/algorithms/tree/tests/test_coding.py::TestNestedTuple::test_sensible_relabeling +networkx/algorithms/tree/tests/test_coding.py::TestNestedTuple::test_sensible_relabeling +networkx/algorithms/tree/tests/test_coding.py::TestNestedTuple::test_sensible_relabeling + C:\Users\aksha\networkx\networkx\algorithms\tree\coding.py:198: DeprecationWarning: The function `join` is deprecated and is renamed `join_trees`. + The ``join`` function itself will be removed in v3.4 + return nx.tree.join([(_make_tree(child), 0) for child in sequence]) + +networkx/drawing/tests/test_pylab.py::test_draw + C:\Users\aksha\anaconda3\Lib\site-packages\fontTools\misc\py23.py:11: DeprecationWarning: The py23 module has been deprecated and will be removed in a future release. Please update your code. + warnings.warn( + +networkx/drawing/tests/test_pylab.py::test_house_with_colors + C:\Users\aksha\anaconda3\Lib\site-packages\_pytest\python.py:198: PytestReturnNotNoneWarning: Expected None, but networkx/drawing/tests/test_pylab.py::test_house_with_colors returned
, which will be an error in a future version of pytest. Did you mean to use `assert` instead of `return`? + warnings.warn( + +networkx/linalg/tests/test_algebraic_connectivity.py::TestSpectralOrdering::test_cycle[lobpcg-False-expected_order0] + C:\Users\aksha\networkx\networkx\linalg\algebraicconnectivity.py:302: UserWarning: Exited at iteration 10 with accuracies + [0.02743716] + not reaching the requested tolerance 1e-08. + Use iteration 11 instead with accuracy + 0.027437158685216033. + + sigma, X = sp.sparse.linalg.lobpcg( + +networkx/linalg/tests/test_algebraic_connectivity.py::TestSpectralOrdering::test_cycle[lobpcg-False-expected_order0] + C:\Users\aksha\networkx\networkx\linalg\algebraicconnectivity.py:302: UserWarning: Exited postprocessing with accuracies + [0.02743716] + not reaching the requested tolerance 1e-08. + sigma, X = sp.sparse.linalg.lobpcg( + +networkx/linalg/tests/test_algebraic_connectivity.py::TestSpectralOrdering::test_cycle[lobpcg-True-expected_order1] + C:\Users\aksha\networkx\networkx\linalg\algebraicconnectivity.py:302: UserWarning: Exited at iteration 10 with accuracies + [0.00056623] + not reaching the requested tolerance 1e-08. + Use iteration 11 instead with accuracy + 0.0005662307712154687. + + sigma, X = sp.sparse.linalg.lobpcg( + +networkx/linalg/tests/test_algebraic_connectivity.py::TestSpectralOrdering::test_cycle[lobpcg-True-expected_order1] + C:\Users\aksha\networkx\networkx\linalg\algebraicconnectivity.py:302: UserWarning: Exited postprocessing with accuracies + [0.00056623] + not reaching the requested tolerance 1e-08. + sigma, X = sp.sparse.linalg.lobpcg( + +-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html +=========================================== 5227 passed, 13 skipped, 17 warnings in 381.99s (0:06:21) ============================================ diff --git a/2023-round-2/axif0/nx_dev_test_output.txt b/2023-round-2/axif0/nx_dev_test_output.txt new file mode 100644 index 00000000..44d3eac7 --- /dev/null +++ b/2023-round-2/axif0/nx_dev_test_output.txt @@ -0,0 +1,405 @@ +============================= test session starts ============================== +platform linux -- Python 3.10.12, pytest-7.4.2, pluggy-1.3.0 +rootdir: /home/mona/Desktop/networkx/networkx +plugins: cov-4.1.0 +collected 5220 items / 3 skipped + +networkx/algorithms/approximation/tests/test_approx_clust_coeff.py ..... [ 0%] +. [ 0%] +networkx/algorithms/approximation/tests/test_clique.py ........ [ 0%] +networkx/algorithms/approximation/tests/test_connectivity.py ........... [ 0%] +....... [ 0%] +networkx/algorithms/approximation/tests/test_distance_measures.py ...... [ 0%] +.. [ 0%] +networkx/algorithms/approximation/tests/test_dominating_set.py .... [ 0%] +networkx/algorithms/approximation/tests/test_kcomponents.py ............ [ 1%] +.... [ 1%] +networkx/algorithms/approximation/tests/test_matching.py . [ 1%] +networkx/algorithms/approximation/tests/test_maxcut.py ..... [ 1%] +networkx/algorithms/approximation/tests/test_ramsey.py . [ 1%] +networkx/algorithms/approximation/tests/test_steinertree.py .... [ 1%] +networkx/algorithms/approximation/tests/test_traveling_salesman.py ..... [ 1%] +....................................s. [ 2%] +networkx/algorithms/approximation/tests/test_treewidth.py .............. [ 2%] + [ 2%] +networkx/algorithms/approximation/tests/test_vertex_cover.py .... [ 2%] +networkx/algorithms/assortativity/tests/test_connectivity.py .......... [ 2%] +networkx/algorithms/assortativity/tests/test_correlation.py ............ [ 2%] +......... [ 3%] +networkx/algorithms/assortativity/tests/test_mixing.py ................. [ 3%] +.. [ 3%] +networkx/algorithms/assortativity/tests/test_neighbor_degree.py ...... [ 3%] +networkx/algorithms/assortativity/tests/test_pairs.py ........... [ 3%] +networkx/algorithms/bipartite/tests/test_basic.py ............... [ 4%] +networkx/algorithms/bipartite/tests/test_centrality.py ....... [ 4%] +networkx/algorithms/bipartite/tests/test_cluster.py ......... [ 4%] +networkx/algorithms/bipartite/tests/test_covering.py .... [ 4%] +networkx/algorithms/bipartite/tests/test_edgelist.py ............... [ 4%] +networkx/algorithms/bipartite/tests/test_generators.py .......... [ 4%] +networkx/algorithms/bipartite/tests/test_matching.py ................... [ 5%] +. [ 5%] +networkx/algorithms/bipartite/tests/test_matrix.py ........... [ 5%] +networkx/algorithms/bipartite/tests/test_project.py .................. [ 5%] +networkx/algorithms/bipartite/tests/test_redundancy.py ... [ 5%] +networkx/algorithms/bipartite/tests/test_spectral_bipartivity.py ... [ 6%] +networkx/algorithms/centrality/tests/test_betweenness_centrality.py .... [ 6%] +..................................... [ 6%] +networkx/algorithms/centrality/tests/test_betweenness_centrality_subset.py . [ 6%] +..................... [ 7%] +networkx/algorithms/centrality/tests/test_closeness_centrality.py ...... [ 7%] +....... [ 7%] +networkx/algorithms/centrality/tests/test_current_flow_betweenness_centrality.py . [ 7%] +................... [ 7%] +networkx/algorithms/centrality/tests/test_current_flow_betweenness_centrality_subset.py . [ 7%] +........ [ 8%] +networkx/algorithms/centrality/tests/test_current_flow_closeness.py .... [ 8%] + [ 8%] +networkx/algorithms/centrality/tests/test_degree_centrality.py ....... [ 8%] +networkx/algorithms/centrality/tests/test_dispersion.py .... [ 8%] +networkx/algorithms/centrality/tests/test_eigenvector_centrality.py .... [ 8%] +......... [ 8%] +networkx/algorithms/centrality/tests/test_group.py ..................... [ 8%] +... [ 9%] +networkx/algorithms/centrality/tests/test_harmonic_centrality.py ....... [ 9%] +...... [ 9%] +networkx/algorithms/centrality/tests/test_katz_centrality.py ........... [ 9%] +............... [ 9%] +networkx/algorithms/centrality/tests/test_laplacian_centrality.py ...... [ 9%] +. [ 9%] +networkx/algorithms/centrality/tests/test_load_centrality.py ........... [ 10%] +....... [ 10%] +networkx/algorithms/centrality/tests/test_percolation_centrality.py .... [ 10%] + [ 10%] +networkx/algorithms/centrality/tests/test_reaching.py ............... [ 10%] +networkx/algorithms/centrality/tests/test_second_order_centrality.py ... [ 10%] +..... [ 10%] +networkx/algorithms/centrality/tests/test_subgraph.py ..... [ 10%] +networkx/algorithms/centrality/tests/test_trophic.py .......... [ 11%] +networkx/algorithms/centrality/tests/test_voterank.py ...... [ 11%] +networkx/algorithms/coloring/tests/test_coloring.py ................. [ 11%] +networkx/algorithms/community/tests/test_asyn_fluid.py ..... [ 11%] +networkx/algorithms/community/tests/test_centrality.py ..... [ 11%] +networkx/algorithms/community/tests/test_kclique.py ........ [ 11%] +networkx/algorithms/community/tests/test_kernighan_lin.py ........ [ 11%] +networkx/algorithms/community/tests/test_label_propagation.py .......... [ 12%] +............. [ 12%] +networkx/algorithms/community/tests/test_louvain.py ........... [ 12%] +networkx/algorithms/community/tests/test_lukes.py .... [ 12%] +networkx/algorithms/community/tests/test_modularity_max.py ............. [ 12%] +..... [ 13%] +networkx/algorithms/community/tests/test_quality.py ....... [ 13%] +networkx/algorithms/community/tests/test_utils.py .... [ 13%] +networkx/algorithms/components/tests/test_attracting.py .... [ 13%] +networkx/algorithms/components/tests/test_biconnected.py ............. [ 13%] +networkx/algorithms/components/tests/test_connected.py ......... [ 13%] +networkx/algorithms/components/tests/test_semiconnected.py ........ [ 13%] +networkx/algorithms/components/tests/test_strongly_connected.py ........ [ 14%] +...... [ 14%] +networkx/algorithms/components/tests/test_weakly_connected.py ...... [ 14%] +networkx/algorithms/connectivity/tests/test_connectivity.py ............ [ 14%] +...................... [ 14%] +networkx/algorithms/connectivity/tests/test_cuts.py .................... [ 15%] +. [ 15%] +networkx/algorithms/connectivity/tests/test_disjoint_paths.py .......... [ 15%] +........ [ 15%] +networkx/algorithms/connectivity/tests/test_edge_augmentation.py ....... [ 15%] +............. [ 16%] +networkx/algorithms/connectivity/tests/test_edge_kcomponents.py ........ [ 16%] +............. [ 16%] +networkx/algorithms/connectivity/tests/test_kcomponents.py .sss...... [ 16%] +networkx/algorithms/connectivity/tests/test_kcutsets.py s........s..... [ 16%] +networkx/algorithms/connectivity/tests/test_stoer_wagner.py ..... [ 17%] +networkx/algorithms/flow/tests/test_gomory_hu.py ....s.... [ 17%] +networkx/algorithms/flow/tests/test_maxflow.py ......................... [ 17%] +.. [ 17%] +networkx/algorithms/flow/tests/test_maxflow_large_graph.py ...s.. [ 17%] +networkx/algorithms/flow/tests/test_mincost.py ................... [ 18%] +networkx/algorithms/flow/tests/test_networksimplex.py .................. [ 18%] +.... [ 18%] +networkx/algorithms/isomorphism/tests/test_ismags.py .......... [ 18%] +networkx/algorithms/isomorphism/tests/test_isomorphism.py .... [ 18%] +networkx/algorithms/isomorphism/tests/test_isomorphvf2.py .............. [ 19%] +.. [ 19%] +networkx/algorithms/isomorphism/tests/test_match_helpers.py .. [ 19%] +networkx/algorithms/isomorphism/tests/test_temporalisomorphvf2.py ...... [ 19%] +...... [ 19%] +networkx/algorithms/isomorphism/tests/test_tree_isomorphism.py ..... [ 19%] +networkx/algorithms/isomorphism/tests/test_vf2pp.py .................... [ 19%] +........................ [ 20%] +networkx/algorithms/isomorphism/tests/test_vf2pp_helpers.py ............ [ 20%] +................................. [ 21%] +networkx/algorithms/isomorphism/tests/test_vf2userfunc.py .............. [ 21%] +.............. [ 21%] +networkx/algorithms/link_analysis/tests/test_hits.py ...... [ 21%] +networkx/algorithms/link_analysis/tests/test_pagerank.py ............... [ 22%] +..................................... [ 22%] +networkx/algorithms/minors/tests/test_contraction.py ................... [ 23%] +............ [ 23%] +networkx/algorithms/operators/tests/test_all.py ................... [ 23%] +networkx/algorithms/operators/tests/test_binary.py .................... [ 24%] +networkx/algorithms/operators/tests/test_product.py .................... [ 24%] +........ [ 24%] +networkx/algorithms/operators/tests/test_unary.py ... [ 24%] +networkx/algorithms/shortest_paths/tests/test_astar.py ................ [ 25%] +networkx/algorithms/shortest_paths/tests/test_dense.py ........ [ 25%] +networkx/algorithms/shortest_paths/tests/test_dense_numpy.py ....... [ 25%] +networkx/algorithms/shortest_paths/tests/test_generic.py ............... [ 25%] +........... [ 25%] +networkx/algorithms/shortest_paths/tests/test_unweighted.py ............ [ 26%] +..... [ 26%] +networkx/algorithms/shortest_paths/tests/test_weighted.py .............. [ 26%] +.......................................... [ 27%] +networkx/algorithms/tests/test_asteroidal.py . [ 27%] +networkx/algorithms/tests/test_boundary.py ............. [ 27%] +networkx/algorithms/tests/test_bridges.py .......... [ 27%] +networkx/algorithms/tests/test_chains.py ..... [ 27%] +networkx/algorithms/tests/test_chordal.py .......... [ 28%] +networkx/algorithms/tests/test_clique.py ................ [ 28%] +networkx/algorithms/tests/test_cluster.py .............................. [ 29%] +............. [ 29%] +networkx/algorithms/tests/test_communicability.py .. [ 29%] +networkx/algorithms/tests/test_core.py ............... [ 29%] +networkx/algorithms/tests/test_covering.py ........... [ 29%] +networkx/algorithms/tests/test_cuts.py ................. [ 30%] +networkx/algorithms/tests/test_cycles.py ............................... [ 30%] +.............................. [ 31%] +networkx/algorithms/tests/test_d_separation.py ............... [ 31%] +networkx/algorithms/tests/test_dag.py .................................. [ 32%] +.......................... [ 32%] +networkx/algorithms/tests/test_distance_measures.py .................... [ 33%] +................................................... [ 34%] +networkx/algorithms/tests/test_distance_regular.py ....... [ 34%] +networkx/algorithms/tests/test_dominance.py ...................... [ 34%] +networkx/algorithms/tests/test_dominating.py ..... [ 34%] +networkx/algorithms/tests/test_efficiency.py ....... [ 34%] +networkx/algorithms/tests/test_euler.py ................................ [ 35%] + [ 35%] +networkx/algorithms/tests/test_graph_hashing.py ........................ [ 35%] + [ 35%] +networkx/algorithms/tests/test_graphical.py ............. [ 36%] +networkx/algorithms/tests/test_hierarchy.py ..... [ 36%] +networkx/algorithms/tests/test_hybrid.py .. [ 36%] +networkx/algorithms/tests/test_isolate.py ... [ 36%] +networkx/algorithms/tests/test_link_prediction.py ...................... [ 36%] +................................................... [ 37%] +networkx/algorithms/tests/test_lowest_common_ancestors.py .............. [ 38%] +......................................... [ 38%] +networkx/algorithms/tests/test_matching.py ............................. [ 39%] +................... [ 39%] +networkx/algorithms/tests/test_max_weight_clique.py ..... [ 39%] +networkx/algorithms/tests/test_mis.py ....... [ 39%] +networkx/algorithms/tests/test_moral.py . [ 40%] +networkx/algorithms/tests/test_node_classification.py ............... [ 40%] +networkx/algorithms/tests/test_non_randomness.py ...... [ 40%] +networkx/algorithms/tests/test_planar_drawing.py ............ [ 40%] +networkx/algorithms/tests/test_planarity.py ............................ [ 41%] +.. [ 41%] +networkx/algorithms/tests/test_reciprocity.py ..... [ 41%] +networkx/algorithms/tests/test_regular.py ............. [ 41%] +networkx/algorithms/tests/test_richclub.py ......... [ 41%] +networkx/algorithms/tests/test_similarity.py ........................... [ 42%] +.................. [ 42%] +networkx/algorithms/tests/test_simple_paths.py ......................... [ 43%] +................................................. [ 44%] +networkx/algorithms/tests/test_smallworld.py ...... [ 44%] +networkx/algorithms/tests/test_smetric.py .. [ 44%] +networkx/algorithms/tests/test_sparsifiers.py ....... [ 44%] +networkx/algorithms/tests/test_structuralholes.py ............. [ 44%] +networkx/algorithms/tests/test_summarization.py ................. [ 44%] +networkx/algorithms/tests/test_swap.py ..................... [ 45%] +networkx/algorithms/tests/test_threshold.py .................. [ 45%] +networkx/algorithms/tests/test_time_dependent.py ............ [ 45%] +networkx/algorithms/tests/test_tournament.py ..................... [ 46%] +networkx/algorithms/tests/test_triads.py ................ [ 46%] +networkx/algorithms/tests/test_vitality.py ...... [ 46%] +networkx/algorithms/tests/test_voronoi.py .......... [ 46%] +networkx/algorithms/tests/test_walks.py ...... [ 46%] +networkx/algorithms/tests/test_wiener.py .... [ 47%] +networkx/algorithms/traversal/tests/test_beamsearch.py ... [ 47%] +networkx/algorithms/traversal/tests/test_bfs.py ................... [ 47%] +networkx/algorithms/traversal/tests/test_dfs.py .................. [ 47%] +networkx/algorithms/traversal/tests/test_edgebfs.py ................ [ 48%] +networkx/algorithms/traversal/tests/test_edgedfs.py ............... [ 48%] +networkx/algorithms/tree/tests/test_branchings.py ...................... [ 48%] +.......... [ 49%] +networkx/algorithms/tree/tests/test_coding.py .............. [ 49%] +networkx/algorithms/tree/tests/test_decomposition.py ..... [ 49%] +networkx/algorithms/tree/tests/test_mst.py ............................. [ 49%] +........................s.s [ 50%] +networkx/algorithms/tree/tests/test_operations.py ... [ 50%] +networkx/algorithms/tree/tests/test_recognition.py ..................... [ 50%] +.... [ 50%] +networkx/classes/tests/test_backends.py .. [ 51%] +networkx/classes/tests/test_coreviews.py ............................... [ 51%] +......................... [ 52%] +networkx/classes/tests/test_digraph.py ................................. [ 52%] +................................................... [ 53%] +networkx/classes/tests/test_digraph_historical.py ...................... [ 54%] +.................... [ 54%] +networkx/classes/tests/test_filters.py ........... [ 54%] +networkx/classes/tests/test_function.py ................................ [ 55%] +....................................... [ 56%] +networkx/classes/tests/test_graph.py ................................... [ 56%] +............................. [ 57%] +networkx/classes/tests/test_graph_historical.py ........................ [ 57%] +.......... [ 57%] +networkx/classes/tests/test_graphviews.py .............................. [ 58%] +..... [ 58%] +networkx/classes/tests/test_multidigraph.py ............................ [ 59%] +........................................................................ [ 60%] +........................................................................ [ 61%] +............... [ 62%] +networkx/classes/tests/test_multigraph.py .............................. [ 62%] +........................................................................ [ 64%] +................................................... [ 65%] +networkx/classes/tests/test_reportviews.py ............................. [ 65%] +........................................................................ [ 67%] +........................................................................ [ 68%] +.................................................................... [ 69%] +networkx/classes/tests/test_special.py ................................. [ 70%] +........................................................................ [ 71%] +........................................................................ [ 73%] +........................................................................ [ 74%] +........................................................................ [ 75%] +........................... [ 76%] +networkx/classes/tests/test_subgraphviews.py ........................... [ 76%] +..... [ 77%] +networkx/drawing/tests/test_latex.py ...... [ 77%] +networkx/drawing/tests/test_layout.py .............................. [ 77%] +networkx/drawing/tests/test_pylab.py ................................... [ 78%] +.............................................................. [ 79%] +networkx/generators/tests/test_atlas.py ........ [ 79%] +networkx/generators/tests/test_classic.py .............................. [ 80%] +....... [ 80%] +networkx/generators/tests/test_cographs.py . [ 80%] +networkx/generators/tests/test_community.py ...................... [ 80%] +networkx/generators/tests/test_degree_seq.py ................... [ 81%] +networkx/generators/tests/test_directed.py .............. [ 81%] +networkx/generators/tests/test_duplication.py ....... [ 81%] +networkx/generators/tests/test_ego.py .. [ 81%] +networkx/generators/tests/test_expanders.py .......................... [ 82%] +networkx/generators/tests/test_geometric.py ............................ [ 82%] +.. [ 82%] +networkx/generators/tests/test_harary_graph.py .. [ 82%] +networkx/generators/tests/test_internet_as_graphs.py ..... [ 82%] +networkx/generators/tests/test_intersection.py .... [ 82%] +networkx/generators/tests/test_interval_graph.py ........ [ 83%] +networkx/generators/tests/test_joint_degree_seq.py .... [ 83%] +networkx/generators/tests/test_lattice.py ....................... [ 83%] +networkx/generators/tests/test_line.py ................................. [ 84%] +.. [ 84%] +networkx/generators/tests/test_mycielski.py ... [ 84%] +networkx/generators/tests/test_nonisomorphic_trees.py ..... [ 84%] +networkx/generators/tests/test_random_clustered.py .... [ 84%] +networkx/generators/tests/test_random_graphs.py ........................ [ 85%] +............................................. [ 85%] +networkx/generators/tests/test_small.py ................................ [ 86%] +...... [ 86%] +networkx/generators/tests/test_spectral_graph_forge.py . [ 86%] +networkx/generators/tests/test_stochastic.py ....... [ 86%] +networkx/generators/tests/test_sudoku.py ...... [ 86%] +networkx/generators/tests/test_time_series.py ....... [ 87%] +networkx/generators/tests/test_trees.py .................. [ 87%] +networkx/generators/tests/test_triads.py .. [ 87%] +networkx/linalg/tests/test_algebraic_connectivity.py ................... [ 87%] +..................................................................... [ 89%] +networkx/linalg/tests/test_attrmatrix.py ..... [ 89%] +networkx/linalg/tests/test_bethehessian.py . [ 89%] +networkx/linalg/tests/test_graphmatrix.py .... [ 89%] +networkx/linalg/tests/test_laplacian.py .... [ 89%] +networkx/linalg/tests/test_modularity.py ... [ 89%] +networkx/linalg/tests/test_spectrum.py ..... [ 89%] +networkx/readwrite/json_graph/tests/test_adjacency.py ........ [ 89%] +networkx/readwrite/json_graph/tests/test_cytoscape.py ....... [ 89%] +networkx/readwrite/json_graph/tests/test_node_link.py ........... [ 90%] +networkx/readwrite/json_graph/tests/test_tree.py ... [ 90%] +networkx/readwrite/tests/test_adjlist.py .................. [ 90%] +networkx/readwrite/tests/test_edgelist.py .......................... [ 90%] +networkx/readwrite/tests/test_gexf.py ..................... [ 91%] +networkx/readwrite/tests/test_gml.py ......................... [ 91%] +networkx/readwrite/tests/test_graph6.py ............................... [ 92%] +networkx/readwrite/tests/test_graphml.py ..................sssssssssssss [ 92%] +ssssssssssssssssssssssssssss [ 93%] +networkx/readwrite/tests/test_leda.py .. [ 93%] +networkx/readwrite/tests/test_p2g.py ... [ 93%] +networkx/readwrite/tests/test_pajek.py ........ [ 93%] +networkx/readwrite/tests/test_sparse6.py ................ [ 94%] +networkx/readwrite/tests/test_text.py ................................. [ 94%] +networkx/tests/test_all_random_functions.py s [ 94%] +networkx/tests/test_convert.py ............... [ 95%] +networkx/tests/test_convert_numpy.py ................................... [ 95%] +............... [ 95%] +networkx/tests/test_convert_pandas.py ...................... [ 96%] +networkx/tests/test_convert_scipy.py .................... [ 96%] +networkx/tests/test_exceptions.py ....... [ 96%] +networkx/tests/test_import.py .. [ 96%] +networkx/tests/test_lazy_imports.py .... [ 97%] +networkx/tests/test_relabel.py .............................. [ 97%] +networkx/utils/tests/test__init.py . [ 97%] +networkx/utils/tests/test_decorators.py ................................ [ 98%] +... [ 98%] +networkx/utils/tests/test_heaps.py .. [ 98%] +networkx/utils/tests/test_mapped_queue.py .............................. [ 98%] +................ [ 99%] +networkx/utils/tests/test_misc.py ............................... [ 99%] +networkx/utils/tests/test_random_sequence.py .... [ 99%] +networkx/utils/tests/test_rcm.py .. [ 99%] +networkx/utils/tests/test_unionfind.py ..... [100%] + +=============================== warnings summary =============================== + compilation 12:4 + compilation 12:4: DeprecationWarning: + + random_tree is deprecated and will be removed in NX v3.4 + Use random_labeled_tree instead. + +networkx/drawing/tests/test_pylab.py:422 + /home/mona/Desktop/networkx/networkx/networkx/drawing/tests/test_pylab.py:422: PytestUnknownMarkWarning: Unknown pytest.mark.mpl_image_compare - is this a typo? You can register custom marks to avoid this warning - for details, see https://docs.pytest.org/en/stable/how-to/mark.html + @pytest.mark.mpl_image_compare + +networkx/algorithms/tree/tests/test_coding.py::TestNestedTuple::test_decoding +networkx/algorithms/tree/tests/test_coding.py::TestNestedTuple::test_decoding +networkx/algorithms/tree/tests/test_coding.py::TestNestedTuple::test_decoding +networkx/algorithms/tree/tests/test_coding.py::TestNestedTuple::test_sensible_relabeling +networkx/algorithms/tree/tests/test_coding.py::TestNestedTuple::test_sensible_relabeling +networkx/algorithms/tree/tests/test_coding.py::TestNestedTuple::test_sensible_relabeling + /home/mona/Desktop/networkx/networkx/networkx/algorithms/tree/coding.py:198: DeprecationWarning: The function `join` is deprecated and is renamed `join_trees`. + The ``join`` function itself will be removed in v3.4 + return nx.tree.join([(_make_tree(child), 0) for child in sequence]) + +networkx/drawing/tests/test_pylab.py::test_house_with_colors + /home/mona/.local/lib/python3.10/site-packages/_pytest/python.py:198: PytestReturnNotNoneWarning: Expected None, but networkx/drawing/tests/test_pylab.py::test_house_with_colors returned
, which will be an error in a future version of pytest. Did you mean to use `assert` instead of `return`? + warnings.warn( + +networkx/linalg/tests/test_algebraic_connectivity.py::TestSpectralOrdering::test_cycle[lobpcg-False-expected_order0] + /home/mona/Desktop/networkx/networkx/networkx/linalg/algebraicconnectivity.py:302: UserWarning: Exited at iteration 10 with accuracies + [0.02743716] + not reaching the requested tolerance 1e-08. + Use iteration 11 instead with accuracy + 0.027437158685215724. + + sigma, X = sp.sparse.linalg.lobpcg( + +networkx/linalg/tests/test_algebraic_connectivity.py::TestSpectralOrdering::test_cycle[lobpcg-False-expected_order0] + /home/mona/Desktop/networkx/networkx/networkx/linalg/algebraicconnectivity.py:302: UserWarning: Exited postprocessing with accuracies + [0.02743716] + not reaching the requested tolerance 1e-08. + sigma, X = sp.sparse.linalg.lobpcg( + +networkx/linalg/tests/test_algebraic_connectivity.py::TestSpectralOrdering::test_cycle[lobpcg-True-expected_order1] + /home/mona/Desktop/networkx/networkx/networkx/linalg/algebraicconnectivity.py:302: UserWarning: Exited at iteration 10 with accuracies + [0.00056623] + not reaching the requested tolerance 1e-08. + Use iteration 11 instead with accuracy + 0.0005662307712154061. + + sigma, X = sp.sparse.linalg.lobpcg( + +networkx/linalg/tests/test_algebraic_connectivity.py::TestSpectralOrdering::test_cycle[lobpcg-True-expected_order1] + /home/mona/Desktop/networkx/networkx/networkx/linalg/algebraicconnectivity.py:302: UserWarning: Exited postprocessing with accuracies + [0.00056623] + not reaching the requested tolerance 1e-08. + sigma, X = sp.sparse.linalg.lobpcg( + +-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html +========== 5168 passed, 55 skipped, 13 warnings in 158.95s (0:02:38) =========== diff --git a/2023-round-2/axif0/nx_version.txt b/2023-round-2/axif0/nx_version.txt new file mode 100644 index 00000000..6149cf6e --- /dev/null +++ b/2023-round-2/axif0/nx_version.txt @@ -0,0 +1 @@ +Installed networkx version in my device is - 3.1