Skip to content

Instantly share code, notes, and snippets.

@jaraco
Last active May 7, 2024 13:56
Show Gist options
  • Save jaraco/2ab76a6b7b4fa47e9d36c332048be425 to your computer and use it in GitHub Desktop.
Save jaraco/2ab76a6b7b4fa47e9d36c332048be425 to your computer and use it in GitHub Desktop.
@ docker run -it jaraco/multipy-tox bash -c 'git clone https://github.com/jaraco/towncrier; cd towncrier; git checkout e5c6df77d; pipx run nox'
Cloning into 'towncrier'...
remote: Enumerating objects: 4318, done.
remote: Counting objects: 100% (1012/1012), done.
remote: Compressing objects: 100% (189/189), done.
remote: Total 4318 (delta 867), reused 878 (delta 794), pack-reused 3306
Receiving objects: 100% (4318/4318), 806.14 KiB | 4.26 MiB/s, done.
Resolving deltas: 100% (2589/2589), done.
Note: switching to 'e5c6df77d'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:
git switch -c <new-branch-name>
Or undo this operation with:
git switch -
Turn off this advice by setting config variable advice.detachedHead to false
HEAD is now at e5c6df7 Add compatibility shim for Python 3.9 and earlier.
nox > Running session pre_commit
nox > Creating virtual environment (virtualenv) using python in .nox/pre_commit
nox > python -m pip install pre-commit
nox > pre-commit run --all-files --show-diff-on-failure
[INFO] Initializing environment for https://github.com/psf/black.
[INFO] Initializing environment for https://github.com/asottile/pyupgrade.
[INFO] Initializing environment for https://github.com/PyCQA/isort.
[INFO] Initializing environment for https://github.com/PyCQA/isort:toml.
[INFO] Initializing environment for https://github.com/PyCQA/flake8.
[INFO] Initializing environment for https://github.com/pre-commit/pre-commit-hooks.
[INFO] Installing environment for https://github.com/psf/black.
[INFO] Once installed this environment will be reused.
[INFO] This may take a few minutes...
[INFO] Installing environment for https://github.com/asottile/pyupgrade.
[INFO] Once installed this environment will be reused.
[INFO] This may take a few minutes...
[INFO] Installing environment for https://github.com/PyCQA/isort.
[INFO] Once installed this environment will be reused.
[INFO] This may take a few minutes...
[INFO] Installing environment for https://github.com/PyCQA/flake8.
[INFO] Once installed this environment will be reused.
[INFO] This may take a few minutes...
[INFO] Installing environment for https://github.com/pre-commit/pre-commit-hooks.
[INFO] Once installed this environment will be reused.
[INFO] This may take a few minutes...
black....................................................................Passed
pyupgrade................................................................Passed
isort....................................................................Passed
flake8...................................................................Passed
trim trailing whitespace.................................................Passed
fix end of files.........................................................Passed
debug statements (python)................................................Passed
check toml...............................................................Passed
check yaml...............................................................Passed
nox > Session pre_commit was successful.
nox > Running session docs
nox > Creating virtual environment (virtualenv) using python in .nox/docs
nox > python -m pip install '.[dev]'
nox > python -m sphinx -T -E -W --keep-going -b html -d docs/_build/doctrees -D language=en docs docs/_build/html
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/towncrier/.nox/docs/lib/python3.12/site-packages/sphinx/__main__.py", line 5, in <module>
from sphinx.cmd.build import main
File "/towncrier/.nox/docs/lib/python3.12/site-packages/sphinx/cmd/build.py", line 21, in <module>
from sphinx.application import Sphinx
File "/towncrier/.nox/docs/lib/python3.12/site-packages/sphinx/application.py", line 26, in <module>
from sphinx.environment import BuildEnvironment
File "/towncrier/.nox/docs/lib/python3.12/site-packages/sphinx/environment/__init__.py", line 18, in <module>
from sphinx.transforms import SphinxTransformer
File "/towncrier/.nox/docs/lib/python3.12/site-packages/sphinx/transforms/__init__.py", line 20, in <module>
from sphinx.util.i18n import format_date
File "/towncrier/.nox/docs/lib/python3.12/site-packages/sphinx/util/i18n.py", line 11, in <module>
import babel.dates
File "/towncrier/.nox/docs/lib/python3.12/site-packages/babel/dates.py", line 34, in <module>
from babel import localtime
File "/towncrier/.nox/docs/lib/python3.12/site-packages/babel/localtime/__init__.py", line 41, in <module>
LOCALTZ = get_localzone()
^^^^^^^^^^^^^^^
File "/towncrier/.nox/docs/lib/python3.12/site-packages/babel/localtime/__init__.py", line 37, in get_localzone
return _get_localzone()
^^^^^^^^^^^^^^^^
File "/towncrier/.nox/docs/lib/python3.12/site-packages/babel/localtime/_unix.py", line 49, in _get_localzone
tzinfo = _get_tzinfo(zone_name)
^^^^^^^^^^^^^^^^^^^^^^
File "/towncrier/.nox/docs/lib/python3.12/site-packages/babel/localtime/_helpers.py", line 21, in _get_tzinfo
return zoneinfo.ZoneInfo(tzenv)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/zoneinfo/_tzpath.py", line 73, in find_tzfile
_validate_tzfile_path(key)
File "/usr/lib/python3.12/zoneinfo/_tzpath.py", line 87, in _validate_tzfile_path
raise ValueError(
ValueError: ZoneInfo keys may not be absolute paths, got: /UTC
nox > Command python -m sphinx -T -E -W --keep-going -b html -d docs/_build/doctrees -D language=en docs docs/_build/html failed with exit code 1
nox > Session docs failed.
nox > Running session typecheck
nox > Creating virtual environment (virtualenv) using python in .nox/typecheck
nox > python -m pip install . mypy 'click!=8.1.4'
nox > mypy src
Success: no issues found in 17 source files
nox > Session typecheck was successful.
nox > Running session tests-pypy3.8
nox > Missing interpreters will error by default on CI systems.
nox > Session tests-pypy3.8 skipped: Python interpreter pypy3.8 not found.
nox > Running session tests-3.8
nox > Creating virtual environment (virtualenv) using python3.8 in .nox/tests-3-8
nox > python -m pip install Twisted 'coverage[toml]'
nox > python -m pip install .
nox > coverage run --module twisted.trial towncrier
towncrier.test.test_build
TestCli
test_all_version_notes_in_a_single_file ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_bullet_points_false ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_collision ... [OK]
test_command ... [OK]
test_confirmation_says_no ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpchj6q6ts/.git/
[master (root-commit) 53273ec] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 849f0a0] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
test_default_start_string ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_default_start_string_markdown ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_draft_no_date ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmps6cxwg9y/.git/
[master (root-commit) 53273ec] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 849f0a0] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
test_in_different_dir_config_option ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_in_different_dir_dir_option ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_in_different_dir_with_nondefault_newsfragments_directory ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_keep_fragments ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpgo817b1z/.git/
[master (root-commit) 53273ec] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 849f0a0] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
test_markdown_no_name_title ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_needs_config ... [OK]
test_needs_version ... [OK]
test_no_confirmation ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmphniun3u_/.git/
[master (root-commit) 53273ec] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 849f0a0] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
test_no_newsfragment_directory ... [OK]
test_no_newsfragments ... fatal: not a git repository (or any of the parent directories): .git
[OK]
test_no_newsfragments_draft ... [OK]
test_no_package_changelog ... [OK]
test_project_name_in_config ... [OK]
test_projectless_changelog ... [OK]
test_release_notes_in_separate_files ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_section_and_type_sorting ... [OK]
test_singlefile_errors_and_explains_cleanly ... [OK]
test_start_string ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_subcommand ... [OK]
test_title_format_custom ... [OK]
test_title_format_false ... [OK]
test_version_in_config ... [OK]
test_with_topline_and_template_and_draft ... [OK]
test_yes_keep_error ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmp0x819a5r/.git/
[master (root-commit) 53273ec] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 849f0a0] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
towncrier.test.test_builder
TestParseNewsfragmentBasename
test_counter ... [OK]
test_counter_with_extension ... [OK]
test_dots_in_ticket_name ... [OK]
test_dots_in_ticket_name_and_counter ... [OK]
test_dots_in_ticket_name_invalid_category ... [OK]
test_ignores_extension ... [OK]
test_invalid_category ... [OK]
test_non_numeric_ticket ... [OK]
test_non_numeric_ticket_with_extension ... [OK]
test_orphan ... [OK]
test_orphan_all_digits ... [OK]
test_orphan_with_dotted_number ... [OK]
test_orphan_with_number ... [OK]
test_simple ... [OK]
test_strip ... [OK]
test_strip_with_counter ... [OK]
towncrier.test.test_check
TestChecker
test_first_release ... Initialized empty Git repository in /tmp/tmp8_5o0_yb/.git/
[main (root-commit) 1de5eeb] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 7256c38] Prepare a release
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
[OK]
test_fragment_exists ... Initialized empty Git repository in /tmp/tmp9hsx4zqs/.git/
[main (root-commit) 1de5eeb] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch f7427ae] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/somefile.py
[otherbranch 0bcb5cf] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/1234.feature
[OK]
test_fragment_exists_hidden ... Initialized empty Git repository in /tmp/tmpgija6l02/.git/
[main (root-commit) c833c3e] Initial Commit
3 files changed, 5 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 9e47034] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/bar/somefile.py
[otherbranch 56254da] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 deep/fragz/1234.feature
[OK]
test_fragment_missing ... Initialized empty Git repository in /tmp/tmpwo70x1qp/.git/
[master (root-commit) 1de5eeb] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch f7427ae] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/somefile.py
[OK]
test_get_default_compare_branch_fallback ... [OK]
test_get_default_compare_branch_main ... [OK]
test_get_default_compare_branch_missing ... Initialized empty Git repository in /tmp/tmpq4uxw7nr/.git/
[main (root-commit) 1de5eeb] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
test_git_fails ... Initialized empty Git repository in /tmp/tmppxum4nr0/.git/
[main (root-commit) 1de5eeb] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
test_in_different_dir_with_nondefault_newsfragments_directory ... Initialized empty Git repository in /tmp/tmpbq1zwupx/.git/
[main (root-commit) 50a1692] Initial Commit
3 files changed, 3 insertions(+)
create mode 100644 foo/changelog.d/123.feature
create mode 100644 foo/foo/__init__.py
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 204072c] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/foo/somefile.py
[otherbranch 36dbda6] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/changelog.d/124.feature
[otherbranch bc4080c] add a file
1 file changed, 1 insertion(+)
create mode 100644 bar/bar/somefile.py
[OK]
test_no_changes_made ... Initialized empty Git repository in /tmp/tmp0p4mg0ih/.git/
[master (root-commit) 1de5eeb] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
test_no_changes_made_config_path ... Initialized empty Git repository in /tmp/tmp91kef3sc/.git/
[master (root-commit) 74c48cd] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 not-pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
test_none_stdout_encoding_works ... Initialized empty Git repository in /tmp/tmprfri8ozf/.git/
[master (root-commit) 1de5eeb] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch f98e7a1] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/1234.feature
[OK]
test_release_branch ... Initialized empty Git repository in /tmp/tmpl9kriuu9/.git/
[main (root-commit) 1de5eeb] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch be89020] First release
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
Switched to branch 'main'
Updating 1de5eeb..be89020
Fast-forward (no commit created; -m option ignored)
NEWS.rst | 7 +++++++
foo/newsfragments/123.feature | 1 -
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
Switched to a new branch 'new-feature-branch'
[new-feature-branch 2ad34ea] A feature in the second release.
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/456.feature
Switched to branch 'main'
Updating be89020..2ad34ea
Fast-forward (no commit created; -m option ignored)
foo/newsfragments/456.feature | 1 +
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/456.feature
Switched to a new branch 'next-release'
[next-release 762762e] Second release
2 files changed, 9 insertions(+), 1 deletion(-)
delete mode 100644 foo/newsfragments/456.feature
[OK]
towncrier.test.test_create
TestCli
test_basics ... [OK]
test_content ... [OK]
test_content_without_eof_newline ... [OK]
test_create_orphan_fragment ... [OK]
test_create_orphan_fragment_custom_prefix ... [OK]
test_custom_extension ... [OK]
test_different_directory ... [OK]
test_directory_created ... [OK]
test_edit_abort ... [OK]
test_edit_with_comment ... [OK]
test_edit_without_comments ... [OK]
test_file_exists ... [OK]
test_file_exists_no_ext ... [OK]
test_file_exists_with_ext ... [OK]
test_in_different_dir_with_nondefault_newsfragments_directory ... [OK]
test_invalid_section ... [OK]
test_md_filename_extension ... [OK]
test_message_and_edit ... [OK]
test_no_filename_extension ... [OK]
test_without_filename ... [OK]
test_without_filename_no_orphan_config ... [OK]
test_without_filename_orphan ... [OK]
test_without_filename_with_message ... [OK]
towncrier.test.test_format
FormatterTests
test_basic ... [OK]
test_issue_format ... [OK]
test_line_wrapping ... [OK]
test_line_wrapping_disabled ... [OK]
test_markdown ... [OK]
test_split ... [OK]
towncrier.test.test_git
TestGit
test_empty_remove ... [OK]
towncrier.test.test_packaging
TestPackaging
test_version_warning ... [OK]
towncrier.test.test_project
InvocationTests
test_dash_m ... [OK]
test_version ... [OK]
VersionFetchingTests
test_already_installed_import ... [OK]
test_import_fails ... ERROR: tried to import projectname_without_any_files, but ran into this error: No module named 'projectname_without_any_files'
[OK]
test_incremental ... [OK]
test_installed_package_found_when_no_source_present ... [OK]
test_missing_version ... [OK]
test_missing_version_project_name ... [OK]
test_str ... [OK]
test_tuple ... [OK]
test_unknown_type ... [OK]
towncrier.test.test_settings
TomlSettingsTests
test_base ... [OK]
test_custom_types_as_tables ... [OK]
test_custom_types_as_tables_array_deprecated ... [OK]
test_explicit_template_extension ... [OK]
test_incorrect_all_bullets ... [OK]
test_incorrect_single_file ... [OK]
test_load_no_config ... [OK]
test_markdown ... [OK]
test_missing ... [OK]
test_missing_template ... [OK]
test_missing_template_in_towncrier ... [OK]
test_mistype_singlefile ... [OK]
test_template_extended ... [OK]
test_towncrier_toml_preferred ... [OK]
towncrier.test.test_write
WritingTests
test_append_at_top ... [OK]
test_append_at_top_with_hint ... [OK]
test_multiple_file_no_start_string ... [OK]
test_single_file_false_overwrite_duplicate_version ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_with_title_format_duplicate_version_raise ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
-------------------------------------------------------------------------------
Ran 122 tests in 0.804s
PASSED (successes=122)
nox > Session tests-3.8 was successful.
nox > Running session tests-3.9
nox > Creating virtual environment (virtualenv) using python3.9 in .nox/tests-3-9
nox > python -m pip install Twisted 'coverage[toml]'
nox > python -m pip install .
nox > coverage run --module twisted.trial towncrier
towncrier.test.test_build
TestCli
test_all_version_notes_in_a_single_file ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_bullet_points_false ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_collision ... [OK]
test_command ... [OK]
test_confirmation_says_no ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpexpswku6/.git/
[master (root-commit) 10b80c9] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 2889212] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
test_default_start_string ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_default_start_string_markdown ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_draft_no_date ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpsdivp19g/.git/
[master (root-commit) 10b80c9] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 2889212] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
test_in_different_dir_config_option ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_in_different_dir_dir_option ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_in_different_dir_with_nondefault_newsfragments_directory ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_keep_fragments ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpk6j2fnkm/.git/
[master (root-commit) 10b80c9] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 2889212] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
test_markdown_no_name_title ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_needs_config ... [OK]
test_needs_version ... [OK]
test_no_confirmation ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmp5ntjwist/.git/
[master (root-commit) 10b80c9] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 2889212] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
test_no_newsfragment_directory ... [OK]
test_no_newsfragments ... fatal: not a git repository (or any of the parent directories): .git
[OK]
test_no_newsfragments_draft ... [OK]
test_no_package_changelog ... [OK]
test_project_name_in_config ... [OK]
test_projectless_changelog ... [OK]
test_release_notes_in_separate_files ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_section_and_type_sorting ... [OK]
test_singlefile_errors_and_explains_cleanly ... [OK]
test_start_string ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_subcommand ... [OK]
test_title_format_custom ... [OK]
test_title_format_false ... [OK]
test_version_in_config ... [OK]
test_with_topline_and_template_and_draft ... [OK]
test_yes_keep_error ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpv5qswxkw/.git/
[master (root-commit) 10b80c9] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 2889212] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
towncrier.test.test_builder
TestParseNewsfragmentBasename
test_counter ... [OK]
test_counter_with_extension ... [OK]
test_dots_in_ticket_name ... [OK]
test_dots_in_ticket_name_and_counter ... [OK]
test_dots_in_ticket_name_invalid_category ... [OK]
test_ignores_extension ... [OK]
test_invalid_category ... [OK]
test_non_numeric_ticket ... [OK]
test_non_numeric_ticket_with_extension ... [OK]
test_orphan ... [OK]
test_orphan_all_digits ... [OK]
test_orphan_with_dotted_number ... [OK]
test_orphan_with_number ... [OK]
test_simple ... [OK]
test_strip ... [OK]
test_strip_with_counter ... [OK]
towncrier.test.test_check
TestChecker
test_first_release ... Initialized empty Git repository in /tmp/tmpp0j1qp89/.git/
[main (root-commit) ed80506] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch bb03f50] Prepare a release
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
[OK]
test_fragment_exists ... Initialized empty Git repository in /tmp/tmpkn4upb3y/.git/
[main (root-commit) ed80506] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch a33c118] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/somefile.py
[otherbranch dab75e1] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/1234.feature
[OK]
test_fragment_exists_hidden ... Initialized empty Git repository in /tmp/tmpifnduh5t/.git/
[main (root-commit) 923e195] Initial Commit
3 files changed, 5 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 1efb2a3] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/bar/somefile.py
[otherbranch 0b370fb] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 deep/fragz/1234.feature
[OK]
test_fragment_missing ... Initialized empty Git repository in /tmp/tmpaecblfzi/.git/
[master (root-commit) ed80506] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch a33c118] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/somefile.py
[OK]
test_get_default_compare_branch_fallback ... [OK]
test_get_default_compare_branch_main ... [OK]
test_get_default_compare_branch_missing ... Initialized empty Git repository in /tmp/tmpgrlb2p0v/.git/
[main (root-commit) ed80506] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
test_git_fails ... Initialized empty Git repository in /tmp/tmp60bv6juy/.git/
[main (root-commit) ed80506] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
test_in_different_dir_with_nondefault_newsfragments_directory ... Initialized empty Git repository in /tmp/tmpa98si5wf/.git/
[main (root-commit) 70304df] Initial Commit
3 files changed, 3 insertions(+)
create mode 100644 foo/changelog.d/123.feature
create mode 100644 foo/foo/__init__.py
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch f933f23] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/foo/somefile.py
[otherbranch 8cff88f] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/changelog.d/124.feature
[otherbranch e8fdbbd] add a file
1 file changed, 1 insertion(+)
create mode 100644 bar/bar/somefile.py
[OK]
test_no_changes_made ... Initialized empty Git repository in /tmp/tmpw22mi2le/.git/
[master (root-commit) ed80506] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
test_no_changes_made_config_path ... Initialized empty Git repository in /tmp/tmp5tu5ievr/.git/
[master (root-commit) 9342c5c] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 not-pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
test_none_stdout_encoding_works ... Initialized empty Git repository in /tmp/tmpsavbumol/.git/
[master (root-commit) ed80506] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch c6f07b2] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/1234.feature
[OK]
test_release_branch ... Initialized empty Git repository in /tmp/tmplsrx29kg/.git/
[main (root-commit) ed80506] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 1c5e936] First release
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
Switched to branch 'main'
Updating ed80506..1c5e936
Fast-forward (no commit created; -m option ignored)
NEWS.rst | 7 +++++++
foo/newsfragments/123.feature | 1 -
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
Switched to a new branch 'new-feature-branch'
[new-feature-branch 6ca4b28] A feature in the second release.
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/456.feature
Switched to branch 'main'
Updating 1c5e936..6ca4b28
Fast-forward (no commit created; -m option ignored)
foo/newsfragments/456.feature | 1 +
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/456.feature
Switched to a new branch 'next-release'
[next-release fec0939] Second release
2 files changed, 9 insertions(+), 1 deletion(-)
delete mode 100644 foo/newsfragments/456.feature
[OK]
towncrier.test.test_create
TestCli
test_basics ... [OK]
test_content ... [OK]
test_content_without_eof_newline ... [OK]
test_create_orphan_fragment ... [OK]
test_create_orphan_fragment_custom_prefix ... [OK]
test_custom_extension ... [OK]
test_different_directory ... [OK]
test_directory_created ... [OK]
test_edit_abort ... [OK]
test_edit_with_comment ... [OK]
test_edit_without_comments ... [OK]
test_file_exists ... [OK]
test_file_exists_no_ext ... [OK]
test_file_exists_with_ext ... [OK]
test_in_different_dir_with_nondefault_newsfragments_directory ... [OK]
test_invalid_section ... [OK]
test_md_filename_extension ... [OK]
test_message_and_edit ... [OK]
test_no_filename_extension ... [OK]
test_without_filename ... [OK]
test_without_filename_no_orphan_config ... [OK]
test_without_filename_orphan ... [OK]
test_without_filename_with_message ... [OK]
towncrier.test.test_format
FormatterTests
test_basic ... [OK]
test_issue_format ... [OK]
test_line_wrapping ... [OK]
test_line_wrapping_disabled ... [OK]
test_markdown ... [OK]
test_split ... [OK]
towncrier.test.test_git
TestGit
test_empty_remove ... [OK]
towncrier.test.test_packaging
TestPackaging
test_version_warning ... [OK]
towncrier.test.test_project
InvocationTests
test_dash_m ... [OK]
test_version ... [OK]
VersionFetchingTests
test_already_installed_import ... [OK]
test_import_fails ... ERROR: tried to import projectname_without_any_files, but ran into this error: No module named 'projectname_without_any_files'
[OK]
test_incremental ... [OK]
test_installed_package_found_when_no_source_present ... [OK]
test_missing_version ... [OK]
test_missing_version_project_name ... [OK]
test_str ... [OK]
test_tuple ... [OK]
test_unknown_type ... [OK]
towncrier.test.test_settings
TomlSettingsTests
test_base ... [OK]
test_custom_types_as_tables ... [OK]
test_custom_types_as_tables_array_deprecated ... [OK]
test_explicit_template_extension ... [OK]
test_incorrect_all_bullets ... [OK]
test_incorrect_single_file ... [OK]
test_load_no_config ... [OK]
test_markdown ... [OK]
test_missing ... [OK]
test_missing_template ... [OK]
test_missing_template_in_towncrier ... [OK]
test_mistype_singlefile ... [OK]
test_template_extended ... [OK]
test_towncrier_toml_preferred ... [OK]
towncrier.test.test_write
WritingTests
test_append_at_top ... [OK]
test_append_at_top_with_hint ... [OK]
test_multiple_file_no_start_string ... [OK]
test_single_file_false_overwrite_duplicate_version ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
test_with_title_format_duplicate_version_raise ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
-------------------------------------------------------------------------------
Ran 122 tests in 0.810s
PASSED (successes=122)
nox > Session tests-3.9 was successful.
nox > Running session tests-3.10
nox > Creating virtual environment (virtualenv) using python3.10 in .nox/tests-3-10
nox > python -m pip install Twisted 'coverage[toml]'
nox > python -m pip install .
nox > coverage run --module twisted.trial towncrier
towncrier.test.test_build
TestCli
test_all_version_notes_in_a_single_file ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:844: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:822: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_bullet_points_false ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:911: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:913: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:915: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:917: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_collision ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:222: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:224: EncodingWarning: 'encoding' argument not specified
test_command ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:26: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:36: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:39: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:41: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:43: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:45: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:47: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:49: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:52: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:55: EncodingWarning: 'encoding' argument not specified
test_confirmation_says_no ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpg3p2jecs/.git/
[master (root-commit) 84cef8e] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 3370e99] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:484: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:486: EncodingWarning: 'encoding' argument not specified
test_default_start_string ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_default_start_string_markdown ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_draft_no_date ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpkzq439fa/.git/
[master (root-commit) 84cef8e] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 3370e99] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:394: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:396: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_config_option ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:133: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_dir_option ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:108: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_with_nondefault_newsfragments_directory ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:171: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:173: EncodingWarning: 'encoding' argument not specified
test_keep_fragments ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpmfaotk_y/.git/
[master (root-commit) b27fd8d] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 31b5b0e] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:435: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:437: EncodingWarning: 'encoding' argument not specified
test_markdown_no_name_title ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_needs_config ... [OK]
test_needs_version ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_no_confirmation ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmp4km_ukh9/.git/
[master (root-commit) b27fd8d] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 31b5b0e] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:411: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:413: EncodingWarning: 'encoding' argument not specified
test_no_newsfragment_directory ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_no_newsfragments ... fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_no_newsfragments_draft ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_no_package_changelog ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:678: EncodingWarning: 'encoding' argument not specified
test_project_name_in_config ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:635: EncodingWarning: 'encoding' argument not specified
test_projectless_changelog ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:534: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:537: EncodingWarning: 'encoding' argument not specified
test_release_notes_in_separate_files ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:725: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_section_and_type_sorting ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:243: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:283: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:290: EncodingWarning: 'encoding' argument not specified
test_singlefile_errors_and_explains_cleanly ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_start_string ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:1108: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:1110: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_subcommand ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:26: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:36: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:39: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:41: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:43: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:45: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:47: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:49: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:52: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:55: EncodingWarning: 'encoding' argument not specified
test_title_format_custom ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:987: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:990: EncodingWarning: 'encoding' argument not specified
test_title_format_false ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:1044: EncodingWarning: 'encoding' argument not specified
test_version_in_config ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:592: EncodingWarning: 'encoding' argument not specified
test_with_topline_and_template_and_draft ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:1315: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:1317: EncodingWarning: 'encoding' argument not specified
test_yes_keep_error ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpni5g2jwz/.git/
[master (root-commit) b27fd8d] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 31b5b0e] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:463: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_build.py:465: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_builder
TestParseNewsfragmentBasename
test_counter ... [OK]
test_counter_with_extension ... [OK]
test_dots_in_ticket_name ... [OK]
test_dots_in_ticket_name_and_counter ... [OK]
test_dots_in_ticket_name_invalid_category ... [OK]
test_ignores_extension ... [OK]
test_invalid_category ... [OK]
test_non_numeric_ticket ... [OK]
test_non_numeric_ticket_with_extension ... [OK]
test_orphan ... [OK]
test_orphan_all_digits ... [OK]
test_orphan_with_dotted_number ... [OK]
test_orphan_with_number ... [OK]
test_simple ... [OK]
test_strip ... [OK]
test_strip_with_counter ... [OK]
towncrier.test.test_check
TestChecker
test_first_release ... Initialized empty Git repository in /tmp/tmpe_3r00kb/.git/
[main (root-commit) 4c95936] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 87eea51] Prepare a release
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_fragment_exists ... Initialized empty Git repository in /tmp/tmpcetrx80n/.git/
[main (root-commit) 4c95936] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch ef90f3e] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/somefile.py
[otherbranch 3b4f175] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/1234.feature
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_fragment_exists_hidden ... Initialized empty Git repository in /tmp/tmpml5hgm6c/.git/
[main (root-commit) 9b75312] Initial Commit
3 files changed, 5 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch b786152] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/bar/somefile.py
[otherbranch 721c75e] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 deep/fragz/1234.feature
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_fragment_missing ... Initialized empty Git repository in /tmp/tmp2tw5itnz/.git/
[master (root-commit) 4c95936] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch ef90f3e] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/somefile.py
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:156: EncodingWarning: 'encoding' argument not specified
test_get_default_compare_branch_fallback ... [OK]
test_get_default_compare_branch_main ... [OK]
test_get_default_compare_branch_missing ... Initialized empty Git repository in /tmp/tmp_h9xp4w2/.git/
[main (root-commit) 4c95936] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_git_fails ... Initialized empty Git repository in /tmp/tmpkixv3ogj/.git/
[main (root-commit) 4c95936] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_with_nondefault_newsfragments_directory ... Initialized empty Git repository in /tmp/tmpog4jw604/.git/
[main (root-commit) 070f73a] Initial Commit
3 files changed, 3 insertions(+)
create mode 100644 foo/changelog.d/123.feature
create mode 100644 foo/foo/__init__.py
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 81bdb7f] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/foo/somefile.py
[otherbranch 74a999c] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/changelog.d/124.feature
[otherbranch c7bed9e] add a file
1 file changed, 1 insertion(+)
create mode 100644 bar/bar/somefile.py
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:308: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:316: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:318: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_no_changes_made ... Initialized empty Git repository in /tmp/tmpxij45dmp/.git/
[master (root-commit) 4c95936] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_no_changes_made_config_path ... Initialized empty Git repository in /tmp/tmpu55r1rag/.git/
[master (root-commit) 79f245f] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 not-pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_none_stdout_encoding_works ... Initialized empty Git repository in /tmp/tmpb7ouvzm3/.git/
[master (root-commit) 4c95936] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch da9f55a] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/1234.feature
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:179: EncodingWarning: 'encoding' argument not specified
test_release_branch ... Initialized empty Git repository in /tmp/tmp47fmwe2u/.git/
[main (root-commit) 4c95936] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 28da3e5] First release
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
Switched to branch 'main'
Updating 4c95936..28da3e5
Fast-forward (no commit created; -m option ignored)
NEWS.rst | 7 +++++++
foo/newsfragments/123.feature | 1 -
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
Switched to a new branch 'new-feature-branch'
[new-feature-branch c9d2e7c] A feature in the second release.
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/456.feature
Switched to branch 'main'
Updating 28da3e5..c9d2e7c
Fast-forward (no commit created; -m option ignored)
foo/newsfragments/456.feature | 1 +
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/456.feature
Switched to a new branch 'next-release'
[next-release 14f01ff] Second release
2 files changed, 9 insertions(+), 1 deletion(-)
delete mode 100644 foo/newsfragments/456.feature
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_create
TestCli
test_basics ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_content ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_content_without_eof_newline ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_create_orphan_fragment ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_create_orphan_fragment_custom_prefix ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_custom_extension ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_different_directory ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_directory_created ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_edit_abort ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_edit_with_comment ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_edit_without_comments ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_file_exists ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_file_exists_no_ext ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_file_exists_with_ext ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_with_nondefault_newsfragments_directory ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_create.py:458: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_create.py:465: EncodingWarning: 'encoding' argument not specified
test_invalid_section ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_md_filename_extension ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_message_and_edit ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_no_filename_extension ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_without_filename ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_create.py:308: EncodingWarning: 'encoding' argument not specified
test_without_filename_no_orphan_config ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_create.py:363: EncodingWarning: 'encoding' argument not specified
test_without_filename_orphan ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_create.py:339: EncodingWarning: 'encoding' argument not specified
test_without_filename_with_message ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_create.py:386: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_format
FormatterTests
test_basic ... [OK]
test_issue_format ... [OK]
test_line_wrapping ... [OK]
test_line_wrapping_disabled ... [OK]
test_markdown ... [OK]
test_split ... [OK]
towncrier.test.test_git
TestGit
test_empty_remove ... [OK]
towncrier.test.test_packaging
TestPackaging
test_version_warning ... [OK]
towncrier.test.test_project
InvocationTests
test_dash_m ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_project.py:188: EncodingWarning: 'encoding' argument not specified
test_version ... [OK]
VersionFetchingTests
test_already_installed_import ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_project.py:139: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_project.py:145: EncodingWarning: 'encoding' argument not specified
test_import_fails ... ERROR: tried to import projectname_without_any_files, but ran into this error: No module named 'projectname_without_any_files'
[OK]
test_incremental ... [OK]
test_installed_package_found_when_no_source_present ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_project.py:165: EncodingWarning: 'encoding' argument not specified
test_missing_version ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_missing_version_project_name ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_str ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_project.py:34: EncodingWarning: 'encoding' argument not specified
test_tuple ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_project.py:47: EncodingWarning: 'encoding' argument not specified
test_unknown_type ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_project.py:116: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_settings
TomlSettingsTests
test_base ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_custom_types_as_tables ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_custom_types_as_tables_array_deprecated ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_explicit_template_extension ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_incorrect_all_bullets ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_incorrect_single_file ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_load_no_config ... [OK]
test_markdown ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_missing ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_missing_template ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_missing_template_in_towncrier ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_mistype_singlefile ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_template_extended ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_towncrier_toml_preferred ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_write
WritingTests
test_append_at_top ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_write.py:79: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_write.py:103: EncodingWarning: 'encoding' argument not specified
test_append_at_top_with_hint ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_write.py:210: EncodingWarning: 'encoding' argument not specified
test_multiple_file_no_start_string ... [OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_write.py:247: EncodingWarning: 'encoding' argument not specified
test_single_file_false_overwrite_duplicate_version ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_write.py:338: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_write.py:319: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_write.py:361: EncodingWarning: 'encoding' argument not specified
test_with_title_format_duplicate_version_raise ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_write.py:287: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_write.py:297: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-10/lib/python3.10/site-packages/towncrier/test/test_write.py:268: EncodingWarning: 'encoding' argument not specified
-------------------------------------------------------------------------------
Ran 122 tests in 0.743s
PASSED (successes=122)
nox > Session tests-3.10 was successful.
nox > Running session tests-3.11
nox > Creating virtual environment (virtualenv) using python3.11 in .nox/tests-3-11
nox > python -m pip install Twisted 'coverage[toml]'
nox > python -m pip install .
nox > coverage run --module twisted.trial towncrier
towncrier.test.test_build
TestCli
test_all_version_notes_in_a_single_file ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:844: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:822: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_bullet_points_false ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:911: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:913: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:915: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:917: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_collision ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:222: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:224: EncodingWarning: 'encoding' argument not specified
test_command ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:26: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:36: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:39: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:41: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:43: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:45: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:47: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:49: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:52: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:55: EncodingWarning: 'encoding' argument not specified
test_confirmation_says_no ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpxi3y3d6c/.git/
[master (root-commit) 06ffd4d] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 8a5fe8b] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:484: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:486: EncodingWarning: 'encoding' argument not specified
test_default_start_string ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_default_start_string_markdown ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_draft_no_date ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmppf6lkg40/.git/
[master (root-commit) 06ffd4d] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 8a5fe8b] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:394: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:396: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_config_option ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:133: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_dir_option ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:108: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_with_nondefault_newsfragments_directory ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:171: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:173: EncodingWarning: 'encoding' argument not specified
test_keep_fragments ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpgzm9uscr/.git/
[master (root-commit) 06ffd4d] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 8a5fe8b] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:435: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:437: EncodingWarning: 'encoding' argument not specified
test_markdown_no_name_title ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_needs_config ... [OK]
test_needs_version ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_no_confirmation ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmp06uc6zyh/.git/
[master (root-commit) 06ffd4d] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 8a5fe8b] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:411: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:413: EncodingWarning: 'encoding' argument not specified
test_no_newsfragment_directory ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_no_newsfragments ... fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_no_newsfragments_draft ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_no_package_changelog ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:678: EncodingWarning: 'encoding' argument not specified
test_project_name_in_config ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:635: EncodingWarning: 'encoding' argument not specified
test_projectless_changelog ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:534: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:537: EncodingWarning: 'encoding' argument not specified
test_release_notes_in_separate_files ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:725: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_section_and_type_sorting ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:243: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:283: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:290: EncodingWarning: 'encoding' argument not specified
test_singlefile_errors_and_explains_cleanly ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_start_string ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:1108: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:1110: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_subcommand ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:26: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:36: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:39: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:41: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:43: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:45: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:47: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:49: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:52: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:55: EncodingWarning: 'encoding' argument not specified
test_title_format_custom ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:987: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:990: EncodingWarning: 'encoding' argument not specified
test_title_format_false ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:1044: EncodingWarning: 'encoding' argument not specified
test_version_in_config ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:592: EncodingWarning: 'encoding' argument not specified
test_with_topline_and_template_and_draft ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:1315: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:1317: EncodingWarning: 'encoding' argument not specified
test_yes_keep_error ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpnip3pl0r/.git/
[master (root-commit) 06ffd4d] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master 8a5fe8b] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:463: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_build.py:465: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_builder
TestParseNewsfragmentBasename
test_counter ... [OK]
test_counter_with_extension ... [OK]
test_dots_in_ticket_name ... [OK]
test_dots_in_ticket_name_and_counter ... [OK]
test_dots_in_ticket_name_invalid_category ... [OK]
test_ignores_extension ... [OK]
test_invalid_category ... [OK]
test_non_numeric_ticket ... [OK]
test_non_numeric_ticket_with_extension ... [OK]
test_orphan ... [OK]
test_orphan_all_digits ... [OK]
test_orphan_with_dotted_number ... [OK]
test_orphan_with_number ... [OK]
test_simple ... [OK]
test_strip ... [OK]
test_strip_with_counter ... [OK]
towncrier.test.test_check
TestChecker
test_first_release ... Initialized empty Git repository in /tmp/tmpobavk90w/.git/
[main (root-commit) 3d3b00c] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 77cd450] Prepare a release
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_fragment_exists ... Initialized empty Git repository in /tmp/tmp4ej1tiiv/.git/
[main (root-commit) 3d3b00c] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 70496c5] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/somefile.py
[otherbranch 996aadd] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/1234.feature
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_fragment_exists_hidden ... Initialized empty Git repository in /tmp/tmpxpcd1b2j/.git/
[main (root-commit) 9f1fae8] Initial Commit
3 files changed, 5 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 0aa9bae] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/bar/somefile.py
[otherbranch 3fdb965] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 deep/fragz/1234.feature
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_fragment_missing ... Initialized empty Git repository in /tmp/tmpes71qe_w/.git/
[master (root-commit) 3d3b00c] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 70496c5] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/somefile.py
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:156: EncodingWarning: 'encoding' argument not specified
test_get_default_compare_branch_fallback ... [OK]
test_get_default_compare_branch_main ... [OK]
test_get_default_compare_branch_missing ... Initialized empty Git repository in /tmp/tmp5y8ihovz/.git/
[main (root-commit) 3d3b00c] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_git_fails ... Initialized empty Git repository in /tmp/tmp2j4_e8oo/.git/
[main (root-commit) 3d3b00c] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_with_nondefault_newsfragments_directory ... Initialized empty Git repository in /tmp/tmpfox9_qg0/.git/
[main (root-commit) b3677e7] Initial Commit
3 files changed, 3 insertions(+)
create mode 100644 foo/changelog.d/123.feature
create mode 100644 foo/foo/__init__.py
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 7edaaa9] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/foo/somefile.py
[otherbranch 41fd15f] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/changelog.d/124.feature
[otherbranch 62dc6ca] add a file
1 file changed, 1 insertion(+)
create mode 100644 bar/bar/somefile.py
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:308: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:316: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:318: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_no_changes_made ... Initialized empty Git repository in /tmp/tmpth98d5rp/.git/
[master (root-commit) 3d3b00c] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_no_changes_made_config_path ... Initialized empty Git repository in /tmp/tmpteksbqq_/.git/
[master (root-commit) 12595b6] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 not-pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_none_stdout_encoding_works ... Initialized empty Git repository in /tmp/tmpcaqvq9ak/.git/
[master (root-commit) 3d3b00c] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch ce492b2] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/1234.feature
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:179: EncodingWarning: 'encoding' argument not specified
test_release_branch ... Initialized empty Git repository in /tmp/tmp5b2o7bq2/.git/
[main (root-commit) 3d3b00c] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch c94cbbc] First release
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
Switched to branch 'main'
Updating 3d3b00c..c94cbbc
Fast-forward (no commit created; -m option ignored)
NEWS.rst | 7 +++++++
foo/newsfragments/123.feature | 1 -
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
Switched to a new branch 'new-feature-branch'
[new-feature-branch 7b00fe1] A feature in the second release.
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/456.feature
Switched to branch 'main'
Updating c94cbbc..7b00fe1
Fast-forward (no commit created; -m option ignored)
foo/newsfragments/456.feature | 1 +
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/456.feature
Switched to a new branch 'next-release'
[next-release 2fed821] Second release
2 files changed, 9 insertions(+), 1 deletion(-)
delete mode 100644 foo/newsfragments/456.feature
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_create
TestCli
test_basics ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_content ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_content_without_eof_newline ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_create_orphan_fragment ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_create_orphan_fragment_custom_prefix ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_custom_extension ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_different_directory ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_directory_created ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_edit_abort ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_edit_with_comment ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_edit_without_comments ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_file_exists ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_file_exists_no_ext ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_file_exists_with_ext ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_with_nondefault_newsfragments_directory ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_create.py:458: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_create.py:465: EncodingWarning: 'encoding' argument not specified
test_invalid_section ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_md_filename_extension ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_message_and_edit ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_no_filename_extension ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_without_filename ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_create.py:308: EncodingWarning: 'encoding' argument not specified
test_without_filename_no_orphan_config ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_create.py:363: EncodingWarning: 'encoding' argument not specified
test_without_filename_orphan ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_create.py:339: EncodingWarning: 'encoding' argument not specified
test_without_filename_with_message ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_create.py:386: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_format
FormatterTests
test_basic ... [OK]
test_issue_format ... [OK]
test_line_wrapping ... [OK]
test_line_wrapping_disabled ... [OK]
test_markdown ... [OK]
test_split ... [OK]
towncrier.test.test_git
TestGit
test_empty_remove ... [OK]
towncrier.test.test_packaging
TestPackaging
test_version_warning ... [OK]
towncrier.test.test_project
InvocationTests
test_dash_m ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_project.py:188: EncodingWarning: 'encoding' argument not specified
test_version ... [OK]
VersionFetchingTests
test_already_installed_import ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_project.py:139: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_project.py:145: EncodingWarning: 'encoding' argument not specified
test_import_fails ... ERROR: tried to import projectname_without_any_files, but ran into this error: No module named 'projectname_without_any_files'
[OK]
test_incremental ... [OK]
test_installed_package_found_when_no_source_present ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_project.py:165: EncodingWarning: 'encoding' argument not specified
test_missing_version ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_missing_version_project_name ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_str ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_project.py:34: EncodingWarning: 'encoding' argument not specified
test_tuple ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_project.py:47: EncodingWarning: 'encoding' argument not specified
test_unknown_type ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_project.py:116: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_settings
TomlSettingsTests
test_base ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_custom_types_as_tables ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_custom_types_as_tables_array_deprecated ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_explicit_template_extension ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_incorrect_all_bullets ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_incorrect_single_file ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_load_no_config ... [OK]
test_markdown ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_missing ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_missing_template ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_missing_template_in_towncrier ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_mistype_singlefile ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_template_extended ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_towncrier_toml_preferred ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_write
WritingTests
test_append_at_top ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_write.py:79: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_write.py:103: EncodingWarning: 'encoding' argument not specified
test_append_at_top_with_hint ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_write.py:210: EncodingWarning: 'encoding' argument not specified
test_multiple_file_no_start_string ... [OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_write.py:247: EncodingWarning: 'encoding' argument not specified
test_single_file_false_overwrite_duplicate_version ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_write.py:338: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_write.py:319: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_write.py:361: EncodingWarning: 'encoding' argument not specified
test_with_title_format_duplicate_version_raise ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_write.py:287: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_write.py:297: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-11/lib/python3.11/site-packages/towncrier/test/test_write.py:268: EncodingWarning: 'encoding' argument not specified
-------------------------------------------------------------------------------
Ran 122 tests in 0.661s
PASSED (successes=122)
nox > Session tests-3.11 was successful.
nox > Running session tests-3.12
nox > Creating virtual environment (virtualenv) using python3.12 in .nox/tests-3-12
nox > python -m pip install Twisted 'coverage[toml]'
nox > python -m pip install .
nox > coverage run --module twisted.trial towncrier
towncrier.test.test_build
TestCli
test_all_version_notes_in_a_single_file ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:844: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:822: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_bullet_points_false ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:911: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:913: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:915: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:917: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_collision ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:222: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:224: EncodingWarning: 'encoding' argument not specified
test_command ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:26: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:36: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:39: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:41: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:43: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:45: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:47: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:49: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:52: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:55: EncodingWarning: 'encoding' argument not specified
test_confirmation_says_no ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpc6af5baf/.git/
[master (root-commit) cefb171] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master a30b623] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:484: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:486: EncodingWarning: 'encoding' argument not specified
test_default_start_string ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_default_start_string_markdown ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_draft_no_date ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpbs4equtr/.git/
[master (root-commit) cefb171] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master a30b623] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:394: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:396: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_config_option ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:133: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_dir_option ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:108: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_with_nondefault_newsfragments_directory ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:171: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:173: EncodingWarning: 'encoding' argument not specified
test_keep_fragments ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmprzosdiep/.git/
[master (root-commit) cefb171] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master a30b623] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:435: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:437: EncodingWarning: 'encoding' argument not specified
test_markdown_no_name_title ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_needs_config ... [OK]
test_needs_version ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_no_confirmation ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmpj8ybbq77/.git/
[master (root-commit) cefb171] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master a30b623] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:411: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:413: EncodingWarning: 'encoding' argument not specified
test_no_newsfragment_directory ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_no_newsfragments ... fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_no_newsfragments_draft ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_no_package_changelog ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:678: EncodingWarning: 'encoding' argument not specified
test_project_name_in_config ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:635: EncodingWarning: 'encoding' argument not specified
test_projectless_changelog ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:534: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:537: EncodingWarning: 'encoding' argument not specified
test_release_notes_in_separate_files ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:725: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_section_and_type_sorting ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:243: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:283: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:290: EncodingWarning: 'encoding' argument not specified
test_singlefile_errors_and_explains_cleanly ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_start_string ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:1108: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:1110: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:21: EncodingWarning: 'encoding' argument not specified
test_subcommand ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:26: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:36: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:39: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:41: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:43: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:45: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:47: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:49: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:52: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:55: EncodingWarning: 'encoding' argument not specified
test_title_format_custom ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:987: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:990: EncodingWarning: 'encoding' argument not specified
test_title_format_false ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:1044: EncodingWarning: 'encoding' argument not specified
test_version_in_config ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:592: EncodingWarning: 'encoding' argument not specified
test_with_topline_and_template_and_draft ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:1315: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:1317: EncodingWarning: 'encoding' argument not specified
test_yes_keep_error ... hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /tmp/tmp6g46z2d5/.git/
[master (root-commit) cefb171] Initial Commit
2 files changed, 3 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 pyproject.toml
[master a30b623] Second Commit
2 files changed, 2 insertions(+)
create mode 100644 foo/newsfragments/123.feature
create mode 100644 foo/newsfragments/124.feature.rst
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:463: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_build.py:465: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_builder
TestParseNewsfragmentBasename
test_counter ... [OK]
test_counter_with_extension ... [OK]
test_dots_in_ticket_name ... [OK]
test_dots_in_ticket_name_and_counter ... [OK]
test_dots_in_ticket_name_invalid_category ... [OK]
test_ignores_extension ... [OK]
test_invalid_category ... [OK]
test_non_numeric_ticket ... [OK]
test_non_numeric_ticket_with_extension ... [OK]
test_orphan ... [OK]
test_orphan_all_digits ... [OK]
test_orphan_with_dotted_number ... [OK]
test_orphan_with_number ... [OK]
test_simple ... [OK]
test_strip ... [OK]
test_strip_with_counter ... [OK]
towncrier.test.test_check
TestChecker
test_first_release ... Initialized empty Git repository in /tmp/tmpr0jgs7z0/.git/
[main (root-commit) 14dd909] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch ea081ec] Prepare a release
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_fragment_exists ... Initialized empty Git repository in /tmp/tmpf4wyhdt3/.git/
[main (root-commit) 14dd909] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 09de8aa] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/somefile.py
[otherbranch d62966e] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/1234.feature
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_fragment_exists_hidden ... Initialized empty Git repository in /tmp/tmposcqefay/.git/
[main (root-commit) fe38b86] Initial Commit
3 files changed, 5 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 933d399] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/bar/somefile.py
[otherbranch 3ad99e7] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 deep/fragz/1234.feature
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_fragment_missing ... Initialized empty Git repository in /tmp/tmpbtnixr33/.git/
[master (root-commit) 14dd909] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 09de8aa] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/somefile.py
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:156: EncodingWarning: 'encoding' argument not specified
test_get_default_compare_branch_fallback ... [OK]
test_get_default_compare_branch_main ... [OK]
test_get_default_compare_branch_missing ... Initialized empty Git repository in /tmp/tmp4_4ffgps/.git/
[main (root-commit) 14dd909] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_git_fails ... Initialized empty Git repository in /tmp/tmp9bsy3dx3/.git/
[main (root-commit) 14dd909] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_with_nondefault_newsfragments_directory ... Initialized empty Git repository in /tmp/tmpq3_dcg5d/.git/
[main (root-commit) 1aaef35] Initial Commit
3 files changed, 3 insertions(+)
create mode 100644 foo/changelog.d/123.feature
create mode 100644 foo/foo/__init__.py
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch fb6fa40] add a file
1 file changed, 1 insertion(+)
create mode 100644 foo/foo/somefile.py
[otherbranch 13e3872] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/changelog.d/124.feature
[otherbranch 18af92a] add a file
1 file changed, 1 insertion(+)
create mode 100644 bar/bar/somefile.py
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:308: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:316: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:318: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_no_changes_made ... Initialized empty Git repository in /tmp/tmpvc18c3xb/.git/
[master (root-commit) 14dd909] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_no_changes_made_config_path ... Initialized empty Git repository in /tmp/tmp66mc0eq5/.git/
[master (root-commit) bdbc1e8] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 not-pyproject.toml
Switched to a new branch 'otherbranch'
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
test_none_stdout_encoding_works ... Initialized empty Git repository in /tmp/tmpr9y5fnuc/.git/
[master (root-commit) 14dd909] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 796e42d] add a newsfragment
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/1234.feature
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:179: EncodingWarning: 'encoding' argument not specified
test_release_branch ... Initialized empty Git repository in /tmp/tmpaeqvh8g9/.git/
[main (root-commit) 14dd909] Initial Commit
3 files changed, 4 insertions(+)
create mode 100644 foo/__init__.py
create mode 100644 foo/newsfragments/123.feature
create mode 100644 pyproject.toml
Switched to a new branch 'otherbranch'
[otherbranch 6fce207] First release
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
Switched to branch 'main'
Updating 14dd909..6fce207
Fast-forward (no commit created; -m option ignored)
NEWS.rst | 7 +++++++
foo/newsfragments/123.feature | 1 -
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 NEWS.rst
delete mode 100644 foo/newsfragments/123.feature
Switched to a new branch 'new-feature-branch'
[new-feature-branch 1feac46] A feature in the second release.
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/456.feature
Switched to branch 'main'
Updating 6fce207..1feac46
Fast-forward (no commit created; -m option ignored)
foo/newsfragments/456.feature | 1 +
1 file changed, 1 insertion(+)
create mode 100644 foo/newsfragments/456.feature
Switched to a new branch 'next-release'
[next-release 8f33f2b] Second release
2 files changed, 9 insertions(+), 1 deletion(-)
delete mode 100644 foo/newsfragments/456.feature
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_check.py:29: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_create
TestCli
test_basics ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_content ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_content_without_eof_newline ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_create_orphan_fragment ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_create_orphan_fragment_custom_prefix ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_custom_extension ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_different_directory ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_directory_created ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_edit_abort ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_edit_with_comment ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_edit_without_comments ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_file_exists ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_file_exists_no_ext ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_file_exists_with_ext ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_in_different_dir_with_nondefault_newsfragments_directory ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_create.py:458: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_create.py:465: EncodingWarning: 'encoding' argument not specified
test_invalid_section ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_md_filename_extension ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_message_and_edit ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_create.py:45: EncodingWarning: 'encoding' argument not specified
test_no_filename_extension ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
test_without_filename ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_create.py:308: EncodingWarning: 'encoding' argument not specified
test_without_filename_no_orphan_config ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_create.py:363: EncodingWarning: 'encoding' argument not specified
test_without_filename_orphan ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_create.py:339: EncodingWarning: 'encoding' argument not specified
test_without_filename_with_message ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:68: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:70: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_create.py:386: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_format
FormatterTests
test_basic ... [OK]
test_issue_format ... [OK]
test_line_wrapping ... [OK]
test_line_wrapping_disabled ... [OK]
test_markdown ... [OK]
test_split ... [OK]
towncrier.test.test_git
TestGit
test_empty_remove ... [OK]
towncrier.test.test_packaging
TestPackaging
test_version_warning ... [OK]
towncrier.test.test_project
InvocationTests
test_dash_m ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_project.py:188: EncodingWarning: 'encoding' argument not specified
test_version ... [OK]
VersionFetchingTests
test_already_installed_import ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_project.py:139: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_project.py:145: EncodingWarning: 'encoding' argument not specified
test_import_fails ... ERROR: tried to import projectname_without_any_files, but ran into this error: No module named 'projectname_without_any_files'
[OK]
test_incremental ... [OK]
test_installed_package_found_when_no_source_present ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_project.py:165: EncodingWarning: 'encoding' argument not specified
test_missing_version ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_missing_version_project_name ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_str ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_project.py:34: EncodingWarning: 'encoding' argument not specified
test_tuple ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_project.py:47: EncodingWarning: 'encoding' argument not specified
test_unknown_type ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_project.py:116: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_settings
TomlSettingsTests
test_base ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_custom_types_as_tables ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_custom_types_as_tables_array_deprecated ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_explicit_template_extension ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_incorrect_all_bullets ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_incorrect_single_file ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_load_no_config ... [OK]
test_markdown ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_missing ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_missing_template ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_missing_template_in_towncrier ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_mistype_singlefile ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_template_extended ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
test_towncrier_toml_preferred ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
towncrier.test.test_write
WritingTests
test_append_at_top ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_write.py:79: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_write.py:103: EncodingWarning: 'encoding' argument not specified
test_append_at_top_with_hint ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/helpers.py:32: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_write.py:210: EncodingWarning: 'encoding' argument not specified
test_multiple_file_no_start_string ... [OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_write.py:247: EncodingWarning: 'encoding' argument not specified
test_single_file_false_overwrite_duplicate_version ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_write.py:338: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_write.py:319: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_write.py:361: EncodingWarning: 'encoding' argument not specified
test_with_title_format_duplicate_version_raise ... fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
[OK]
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_write.py:287: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_write.py:297: EncodingWarning: 'encoding' argument not specified
/towncrier/.nox/tests-3-12/lib/python3.12/site-packages/towncrier/test/test_write.py:268: EncodingWarning: 'encoding' argument not specified
-------------------------------------------------------------------------------
Ran 122 tests in 0.796s
PASSED (successes=122)
nox > Session tests-3.12 was successful.
nox > Running session coverage_report
nox > Creating virtual environment (virtualenv) using python in .nox/coverage_report
nox > python -m pip install 'coverage[toml]'
nox > coverage combine
Combined data file .coverage.94aac6b11e57.1013.XeBBarrx
Combined data file .coverage.94aac6b11e57.1369.XOsifTKx
Combined data file .coverage.94aac6b11e57.1724.XDRDCUHx
Combined data file .coverage.94aac6b11e57.2079.XGBeUzOx
Combined data file .coverage.94aac6b11e57.2370.XskpgTLx
nox > coverage report
Name Stmts Miss Branch BrPart Cover Missing
----------------------------------------------------------------------
src/towncrier/_writer.py 25 0 10 1 97% 20->exit
----------------------------------------------------------------------
TOTAL 677 0 305 1 99%
12 files skipped due to complete coverage.
nox > Session coverage_report was successful.
nox > Ran multiple sessions:
nox > * pre_commit: success
nox > * docs: failed
nox > * typecheck: success
nox > * tests-pypy3.8: skipped
nox > * tests-3.8: success
nox > * tests-3.9: success
nox > * tests-3.10: success
nox > * tests-3.11: success
nox > * tests-3.12: success
nox > * coverage_report: success
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment