Compare commits

...

28 Commits

Author SHA1 Message Date
Semantic Versioner
4906d867d0 Iteration 2023-07-22 05:38:34 -04:00
Semantic Versioner
930d1b14b1 Iteration 2023-07-22 05:30:49 -04:00
Semantic Versioner
02fe81d919 Iteration 2023-07-22 05:30:02 -04:00
Semantic Versioner
849874cec6 Iteration 2023-07-22 05:28:03 -04:00
Semantic Versioner
da1e716dde GitHub Actions Iterations 2023-07-22 05:24:36 -04:00
Semantic Versioner
d2a3d5de6f GitHub Actions Iterations 2023-07-22 05:17:53 -04:00
Semantic Versioner
f5204b496f GitHub Actions Iterations 2023-07-22 05:16:32 -04:00
Semantic Versioner
3eb8b3da81 GitHub Actions Iterations 2023-07-22 05:15:27 -04:00
Semantic Versioner
405ce258f2 GitHub Actions Iterations 2023-07-22 05:12:45 -04:00
Semantic Versioner
1138c97865 GitHub Actions Iterations 2023-07-22 05:11:51 -04:00
Semantic Versioner
8b214aab3d GitHub Actions Iterations 2023-07-22 05:11:03 -04:00
Semantic Versioner
6a2b5da00b GitHub Actions Iterations 2023-07-22 05:09:18 -04:00
Semantic Versioner
5c9bcfdac2 GitHub Actions Iterations 2023-07-22 05:04:59 -04:00
Semantic Versioner
05b2278154 GitHub Actions Iterations 2023-07-22 05:03:40 -04:00
Semantic Versioner
8976f24186 toml 2023-07-22 05:03:12 -04:00
Semantic Versioner
2de8d7d597 GitHub Actions Iterations 2023-07-22 05:02:52 -04:00
Semantic Versioner
29daef3b46 GitHub Actions Iterations 2023-07-22 04:59:16 -04:00
Semantic Versioner
98fb6dada1 GitHub Actions Iterations 2023-07-22 04:57:52 -04:00
Semantic Versioner
81f0cf33aa GitHub Actions Iterations 2023-07-22 04:54:53 -04:00
Semantic Versioner
4d25ef7719 GitHub Actions Iterations 2023-07-22 04:52:29 -04:00
Semantic Versioner
eecdc5661d GitHub Actions Iterations 2023-07-22 04:51:42 -04:00
Semantic Versioner
f36e7be2d8 GitHub Actions Iterations 2023-07-22 04:51:11 -04:00
Semantic Versioner
a273f83873 GitHub Actions Iterations 2023-07-22 04:50:33 -04:00
Semantic Versioner
0ae43a314a GitHub Actions Iterations 2023-07-22 04:49:16 -04:00
Semantic Versioner
df27ad2041 GitHub Actions Iterations 2023-07-22 04:48:41 -04:00
Semantic Versioner
06671174b2 GitHub Actions Iterations 2023-07-22 04:48:03 -04:00
Semantic Versioner
036b720f2e GitHub Actions Iterations 2023-07-22 04:47:13 -04:00
Semantic Versioner
b6bfc2409c Add unit test workflow 2023-07-22 04:46:03 -04:00
5 changed files with 89 additions and 12 deletions

75
.github/workflows/unittests.yaml vendored Normal file
View File

@ -0,0 +1,75 @@
name: Pytest
on:
push:
branches:
- master
- feature/refactor
pull_request: {}
jobs:
test:
name: Unit Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov
pip install -r requirements.txt
- name: Test
run: |
pytest
coverage:
name: Coverage Summary
runs-on: ubuntu-22.04
permissions:
pull-requests: write
contents: read
if: github.event_name == 'pull_request'
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov
pip install -r requirements.txt
- name: Run Coverage
run: |
pytest --junitxml=pytest.xml --cov-report=term-missing:skip-covered --cov=semver | tee pytest-coverage.txt
- name: Comment Result Summary
uses: MishaKav/pytest-coverage-comment@main
with:
pytest-coverage-path: ./pytest-coverage.txt
junitxml-path: ./pytest.xml

View File

@ -1,7 +1,7 @@
import re
import subprocess
from typing import Union, List
from functools import cache
from functools import lru_cache
import toml
@ -29,7 +29,7 @@ class Git(SCM):
def _run_command(
self, *args: str, throwExceptions: bool = True
) -> subprocess.CompletedProcess[str]:
) -> subprocess.CompletedProcess:
return subprocess.run(
args,
capture_output=True,
@ -82,13 +82,17 @@ class Git(SCM):
f"Error getting latest tagged git version: {str(e.stderr).rstrip()}"
)
if len(tagged_versions) > 0 and tagged_versions[-1] != "":
if (
tagged_versions is not None
and len(tagged_versions) > 0
and tagged_versions[-1] != ""
):
version = tagged_versions[-1]
logger.debug(f"Tag Version: {version}")
return version
@cache
@lru_cache(maxsize=None)
def get_branch(self) -> str:
"""
Get the main branch
@ -97,7 +101,7 @@ class Git(SCM):
proc = self._run_command(self.git_bin, "rev-parse", "--abbrev-ref", "HEAD")
return proc.stdout.rstrip()
@cache
@lru_cache(maxsize=None)
def get_merge_branch(self) -> Union[str, None]:
"""
Get the branches involved in the merge

View File

@ -67,10 +67,8 @@ class TestSemVer(unittest.TestCase):
@mock.patch("toml.load")
@mock.patch("pathlib.Path.is_file")
@mock.patch("builtins.open", mock.mock_open())
@mock.patch("semver.logger.warning")
def test_update_file_version(
self,
mock_logger: mock.Mock,
mock_path_is_file: mock.Mock,
mock_toml_load: mock.Mock,
):
@ -83,11 +81,9 @@ class TestSemVer(unittest.TestCase):
}
mock_path_is_file.return_value = True
self.semver._update_file_version("1.0.1", "1.0.0")
mock_logger.assert_not_called()
mock_path_is_file.return_value = False
self.semver._update_file_version("1.0.1", "1.0.0")
mock_logger.assert_called_once()
@mock.patch("semver.semver.SemVer._version_repo", mock.MagicMock())
def test_run_ok(self):

View File

@ -1,6 +1,6 @@
from typing import List
from pathlib import Path
from functools import cache
from functools import lru_cache
import configparser
import toml
@ -8,7 +8,7 @@ import toml
from semver.exceptions import SemverException
@cache
@lru_cache(maxsize=None)
def get_settings() -> dict:
"""
Get the settings from the config file

View File

@ -24,7 +24,9 @@ classifiers =
[options]
include_package_data = True
packages = find:
python_requires = >=3.7, <4
python_requires = >=3.8, <4
install_requires =
toml
[options.packages.find]
exclude =