Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version to 0.1.0, add RELEASE_NOTES #91

Merged
merged 2 commits into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions RELEASE_NOTES
Original file line number Diff line number Diff line change
@@ -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 .
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
Loading