Skip to content

Commit 1b9c1c6

Browse files
committed
chore: use current version of boilerplates
1 parent fa1a0a3 commit 1b9c1c6

6 files changed

Lines changed: 4 additions & 116 deletions

File tree

.dockerignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
# OS: Windows
1010
desktop.ini
1111
System Volume Information
12-
Thumbs.db
1312
Thumbs.db*
1413

1514
# Python

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
# OS: Windows
88
desktop.ini
99
System Volume Information
10-
Thumbs.db
1110
Thumbs.db*
1211

1312
# Python

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = [
3-
'boilerplates[setup] ~= 0.1',
3+
'boilerplates[setup] ~= 0.5',
44
'GitPython ~= 3.1',
55
'packaging >= 23.0',
66
'semver ~= 2.13'

requirements_test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
-r requirements.txt
2-
boilerplates[packaging_tests] ~= 0.1
2+
boilerplates[git_repo_tests,packaging_tests] ~= 0.5
33
colorlog ~= 6.7
44
setuptools >= 67.4

test/test_git.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,16 @@
22

33
import itertools
44
import logging
5-
# import unittest
65

7-
# import git
6+
import boilerplates.git_repo_tests
87

98
from version_query.version import VersionComponent, Version
109
from version_query.git_query import query_git_repo, predict_git_repo
11-
from .test_with_git_repo import GitRepoTests
1210

1311
_LOG = logging.getLogger(__name__)
1412

1513

16-
class Tests(GitRepoTests):
14+
class Tests(boilerplates.git_repo_tests.GitRepoTests):
1715
"""Test suite for automated tests of generated git repositories.
1816
1917
Each case is executed in a fresh empty repository.

test/test_with_git_repo.py

Lines changed: 0 additions & 108 deletions
This file was deleted.

0 commit comments

Comments
 (0)