From c796e193310a18f1cf7a68218d17221d5c27fc22 Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Fri, 22 Mar 2024 09:02:37 -0600 Subject: [PATCH] Drop nose It doesn't appear to be used, wasn't working, and wasn't tested by CI Signed-off-by: Joshua Watt --- .coveragerc | 2 -- README.md | 7 ------- pyproject.toml | 1 - setup.cfg | 2 -- 4 files changed, 12 deletions(-) delete mode 100644 .coveragerc delete mode 100644 setup.cfg diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index cc764ca..0000000 --- a/.coveragerc +++ /dev/null @@ -1,2 +0,0 @@ -[run] -include = bmaptools/* diff --git a/README.md b/README.md index bc50247..40b9f12 100644 --- a/README.md +++ b/README.md @@ -284,7 +284,6 @@ expand it. Later on, you may reconstruct it using the `bmaptool copy` command. | | on the 'BmapCreate.py' and 'BmapCopy.py' modules. | | - setup.py | A script to turn the entire bmaptool project | | | into a python egg. | -| - setup.cfg | contains a piece of nose tests configuration | | - .coveragerc | lists files to include into test coverage report | | - TODO | Just a list of things to be done for the project. | | - make_a_release.sh | Most people may ignore this script. It is used by | @@ -317,12 +316,6 @@ expand it. Later on, you may reconstruct it using the `bmaptool copy` command. ------------------------------------------------------------------------------------ ``` -## How to run unit tests - -Just install the `nose` python test framework and run the `nosetests` command in -the project root directory. If you want to see tests coverage report, run -`nosetests --with-coverage`. - ## Known Issues ### ZFS File System diff --git a/pyproject.toml b/pyproject.toml index 769f9c5..220f672 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,6 @@ classifiers = [ [project.optional-dependencies] dev = [ "black >= 22.3.0", - "nose >= 1.3.7", ] [project.urls] diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 2347937..0000000 --- a/setup.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[nosetests] -cover-package=bmaptool