SmokeCrossFit 0.0.0__tar.gz → 1.0.0b6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/.github/workflows/ci.yml +7 -0
  2. {smokecrossfit-0.0.0/SmokeCrossFit.egg-info → smokecrossfit-1.0.0b6}/PKG-INFO +1 -1
  3. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6/SmokeCrossFit.egg-info}/PKG-INFO +1 -1
  4. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/pyproject.toml +1 -1
  5. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/.gitignore +0 -0
  6. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/README.md +0 -0
  7. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/SmokeCrossFit.egg-info/SOURCES.txt +0 -0
  8. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/SmokeCrossFit.egg-info/dependency_links.txt +0 -0
  9. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/SmokeCrossFit.egg-info/top_level.txt +0 -0
  10. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/__init__.py +0 -0
  11. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/bin/tools/jacococli.jar +0 -0
  12. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/commands/__init__.py +0 -0
  13. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/commands/command.py +0 -0
  14. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/commands/command_builder.py +0 -0
  15. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/executors/__init__.py +0 -0
  16. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/executors/executor.py +0 -0
  17. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/executors/executor_factory.py +0 -0
  18. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/executors/local_executor.py +0 -0
  19. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/models/__init__.py +0 -0
  20. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/models/command_models.py +0 -0
  21. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/models/executor_models.py +0 -0
  22. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/models/tool_models.py +0 -0
  23. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/refs/__init__.py +0 -0
  24. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/tools/__init__.py +0 -0
  25. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/tools/dotnet_coverage.py +0 -0
  26. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/tools/jacoco.py +0 -0
  27. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/tools/tool.py +0 -0
  28. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/crossfit/tools/tool_factory.py +0 -0
  29. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/requirements.txt +0 -0
  30. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/setup.cfg +0 -0
  31. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/conftest.py +0 -0
  32. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/helpers/command/f1.txt +0 -0
  33. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/helpers/tools/dotnetcoverage/classfiles/.gitkeep +0 -0
  34. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/helpers/tools/dotnetcoverage/s1.cobertura.xml +0 -0
  35. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/helpers/tools/dotnetcoverage/s2.cobertura.xml +0 -0
  36. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/helpers/tools/dotnetcoverage/sourcecode/.gitkeep +0 -0
  37. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/helpers/tools/dotnetcoverage/sourcecode/Dummy.cs +0 -0
  38. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/helpers/tools/jacoco/classfiles/.gitkeep +0 -0
  39. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/helpers/tools/jacoco/f1.exec +0 -0
  40. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/helpers/tools/jacoco/f2.exec +0 -0
  41. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/helpers/tools/jacoco/sourcecode/.gitkeep +0 -0
  42. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/sanity/test_dotnet_coverage.py +0 -0
  43. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/sanity/test_jacoco.py +0 -0
  44. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/unit-tests/command_tests/test_command.py +0 -0
  45. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/unit-tests/command_tests/test_command_builder.py +0 -0
  46. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/unit-tests/executors_tests/test_executor.py +0 -0
  47. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/unit-tests/executors_tests/test_local_executor.py +0 -0
  48. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/unit-tests/tools_tests/test_dotnet_coverage.py +0 -0
  49. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/unit-tests/tools_tests/test_jacoco.py +0 -0
  50. {smokecrossfit-0.0.0 → smokecrossfit-1.0.0b6}/testing/unit-tests/tools_tests/test_tool.py +0 -0
@@ -1,6 +1,12 @@
1
1
  name: CI/CD
2
2
 
3
3
  on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ tag:
7
+ description: "Tag to build/publish"
8
+ required: true
9
+ type: string
4
10
  push:
5
11
  branches: ["*"]
6
12
  tags:
@@ -46,6 +52,7 @@ jobs:
46
52
  - uses: actions/checkout@v4
47
53
  with:
48
54
  fetch-depth: 0
55
+ fetch-tags: true
49
56
 
50
57
  - name: Set up Python
51
58
  uses: actions/setup-python@v5
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SmokeCrossFit
3
- Version: 0.0.0
3
+ Version: 1.0.0b6
4
4
  Summary: A unified interface for various code coverage tools (JaCoCo, dotnet-coverage)
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SmokeCrossFit
3
- Version: 0.0.0
3
+ Version: 1.0.0b6
4
4
  Summary: A unified interface for various code coverage tools (JaCoCo, dotnet-coverage)
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -9,7 +9,7 @@ description = "A unified interface for various code coverage tools (JaCoCo, dotn
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"
11
11
 
12
- [tool.setuptools-scm]
12
+ [tool.setuptools_scm]
13
13
 
14
14
  [tool.setuptools.packages.find]
15
15
  include = ["crossfit*"]
File without changes
File without changes