Skip to content

Commit

Permalink
clean up tech debt to re-issue v0.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardBruskiewich committed May 7, 2024
1 parent 41e0f84 commit 2245845
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- repository generally renamed to graph-validation-test-runners (but propagate current version)
- renamed various TestRunner packages to have suffix "_runner"
- repair some technical debt; patch unit tests
- added get_compliance_tests() method used by TestHarness


## 0.0.11 (reissued 0.0.10)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Graph Validation Tests

[![Pyversions](https://img.shields.io/pypi/pyversions/graph-validation-test-runners)](https://pypi.python.org/pypi/graph-validation-test-runners)
[![Publish Python Package](https://github.com/TranslatorSRI/graph-validation-test-runners/actions/workflows/python-publish.yml/badge.svg)](https://pypi.org/project/graph-validation-tests-runners/)
[![Publish Python Package](https://github.com/TranslatorSRI/graph-validation-test-runners/actions/workflows/python-publish.yml/badge.svg)](https://pypi.org/project/graph-validation-test-runners/)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
[![Run tests](https://github.com/TranslatorSRI/graph-validation-test-runners/actions/workflows/test.yml/badge.svg)](https://github.com/TranslatorSRI/graph-validation-test-runners/actions/workflows/test.yml)

Expand Down Expand Up @@ -48,12 +48,12 @@ then proceed with [command line execution](#cli) or [script level execution](#pr
Within a command line terminal, type:

```shell
$ standards_validation_test_runner --help
$ standards_validation_test --help
```
or

```shell
$ one_hop_test_runner --help
$ one_hop_test --help
```

should give usage instructions as follows (where <tool name> is either 'standards_validation_test_runner' or 'one_hop_test_runner'):
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ license = "MIT"
readme = "README.md"

homepage = "https://github.com/TranslatorSRI"
repository = "https://github.com/TranslatorSRI/GraphValidationTests"
documentation = "https://github.com/TranslatorSRI/GraphValidationTests/blob/main/README.md"
repository = "https://github.com/TranslatorSRI/graph-validation-test-runners"
documentation = "https://github.com/TranslatorSRI/graph-validation-test-runners/blob/main/README.md"
keywords = [
"NCATS",
"Biomedical Data Translator",
Expand Down Expand Up @@ -70,8 +70,8 @@ pytest-cov = "^4.1.0"
pytest-asyncio = "^0.23.3"

[tool.poetry.urls]
"Change Log" = "https://github.com/TranslatorSRI/GraphValidationTests/blob/master/CHANGELOG.md"
"Bug Tracker" = "https://github.com/TranslatorSRI/GraphValidationTests/issues"
"Change Log" = "https://github.com/TranslatorSRI/graph-validation-test-runners/blob/master/CHANGELOG.md"
"Bug Tracker" = "https://github.com/TranslatorSRI/graph-validation-test-runners/issues"

[tool.poetry.extras]

Expand All @@ -85,8 +85,8 @@ vcs = "git"
style = "pep440"

[tool.poetry.scripts]
standards_validation_test = "standards_validation_test:main"
one_hop_test = "one_hop_test:main"
standards_validation_test = "standards_validation_test_runner:main"
one_hop_test = "one_hop_test_runner:main"

[tool.pytest.ini_options]
log_cli = true
Expand Down

0 comments on commit 2245845

Please sign in to comment.