-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename project: pytest_pt → pytest-pt (i.e.,
_
→ -
)
This gives us consistency with other pytest plugins, such as pytest-xdist, pytest-cache, and so on. In fact, we were already called `pytest-pt` on pypi[1] because it automatically converts underscores to hyphens in package names, and installing with either name worked (and will continue to work) because either is accepted in place of the other by Pip et al. So this change is really just making the rest of the names (official module name, our GitHub repo, the package files we upload, etc.) consistent with this. (The GitHub repo has been renamed, but fetches from the old name will continue to work, and old URLs will redirect to the new one.) [1]: https://pypi.org/project/pytest-pt/
- Loading branch information
Showing
6 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[project] | ||
version = '0.0.2' | ||
name = 'pytest_pt' | ||
version = '0.0.3.dev0' | ||
name = 'pytest-pt' | ||
description = 'pytest plugin to use *.pt files as tests' | ||
authors = [ | ||
{ name = 'Curt J. Sampson', email = '[email protected]' }, | ||
] | ||
license = { file = 'LICENSE' } | ||
readme = 'README.md' | ||
urls.homepage = 'https://github.com/cynic-net/pytest_pt' | ||
urls.source = 'https://github.com/cynic-net/pytest_pt' | ||
urls.tracker = 'https://github.com/cynic-net/pytest_pt/issues' | ||
urls.homepage = 'https://github.com/cynic-net/pytest-pt' | ||
urls.source = 'https://github.com/cynic-net/pytest-pt' | ||
urls.tracker = 'https://github.com/cynic-net/pytest-pt/issues' | ||
classifiers = [ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
' This test module should be discovered and run by the pytest_pt plugin. ' | ||
' This test module should be discovered and run by the pytest-pt plugin. ' | ||
|
||
def test_pt(): | ||
assert 1 |