From 585b61e235b2b34fc33ff21323a12059afc6d44b Mon Sep 17 00:00:00 2001 From: Michelle Richer Date: Wed, 26 Jun 2024 12:12:38 -0400 Subject: [PATCH] Add profiling capabilities --- .gitignore | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b43b2b0b..76f1c484 100644 --- a/.gitignore +++ b/.gitignore @@ -47,6 +47,7 @@ coverage.xml .hypothesis/ .pytest_cache/ *,cover +prof/ # Translations *.mo diff --git a/pyproject.toml b/pyproject.toml index bc2f7cc2..95df8ce5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,7 +61,7 @@ doc = [ "nbsphinx-link" ] "dev" = ["tox"] -"test" = ["tox", "pytest", "pytest-cov"] +"test" = ["tox", "pytest", "pytest-cov", "pytest-profiling"] "pyscf" = ["pyscf>=1.6.1"] [tool.black]