diff --git a/RELEASE_NOTES b/RELEASE_NOTES new file mode 100644 index 00000000..0bb97deb --- /dev/null +++ b/RELEASE_NOTES @@ -0,0 +1,19 @@ +This file contains a description of the major changes to the EESSI test suite. +For more detailed information, please see the git log. + +v0.1.0 (5 October 2023) +----------------------- + +This is the first release of the EESSI test suite. + +It includes: + +* A well-structured `eessi.testsuite` Python package that provides constants, utilities, hooks, and tests, which can be installed with "`pip install`". +* Tests for GROMACS and TensorFlow in `eessi.testsuite.tests.apps` that leverage the functionality provided by `eessi.testsuite.*`. +* Examples of ReFrame configuration files for various systems in the `config` subdirectory. +* A `common_logging_config()` function to facilitate the ReFrame logging configuration. +* A set of standard device types and features that can be used in the partitions section of the ReFrame configuration file. +* A set of tags (CI + scale) that can be used to filter checks. +* Scripts that show how to run the test suite. + +For documentation, see https://eessi.io/docs/test-suite . diff --git a/pyproject.toml b/pyproject.toml index 7ffffe55..3c374a5c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "eessi-testsuite" -version = "0.0.2" +version = "0.1.0" description = "Test suite for the EESSI software stack" readme = "README.md" license = {file = "LICENSE"} @@ -14,7 +14,7 @@ classifiers = [ requires-python = ">=3.6" [project.urls] -"Homepage" = "https://eessi.github.io/docs/software_testing/" +"Homepage" = "https://eessi.io/docs/test-suite" "Bug Tracker" = "https://github.com/EESSI/test-suite/issues" [tool.setuptools.packages.find] diff --git a/setup.cfg b/setup.cfg index 737b6e84..f48c4789 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,12 +1,12 @@ [metadata] name = eessi-testsuite -version = 0.0.2 +version = 0.1.0 description = Test suite for the EESSI software stack long_description = file: README.md, LICENSE classifiers = Programming Language :: Python :: 3 project_urls = - Homepage = https://eessi.github.io/docs/software_testing/ + Homepage = https://eessi.io/docs/test-suite Bug Tracker = https://github.com/EESSI/test-suite/issues [options]