Skip to content

Commit 3b31845

Browse files
committed
Revert "Merge pull request #1112 from cloudbees-oss/smart-tests-backport"
This reverts commit c53e451, reversing changes made to d10b7d9.
1 parent c53e451 commit 3b31845

File tree

100 files changed

+226
-2190
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+226
-2190
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ charset=utf-8
88
indent_style=space
99

1010
[*.java]
11-
indent_size = 2
11+
indent_size = 4

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
env:
5151
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
5252
with:
53-
args: 'Smart Tests CLI ${{ needs.tagpr.outputs.tag }} is released! https://github.com/cloudbees-oss/smart-tests-cli/releases/tag/${{ needs.tagpr.outputs.tag }}'
53+
args: 'Smart Tests CLI ${{ needs.tagpr.outputs.tag }} is released! https://github.com/launchableinc/cli/releases/tag/${{ needs.tagpr.outputs.tag }}'
5454

5555
docker:
5656
name: Push Docker image to Docker Hub
@@ -88,7 +88,7 @@ jobs:
8888
tags: ${{ env.IMAGE_NAME }}:${{ needs.tagpr.outputs.tag }}
8989

9090
- name: Generate artifact attestation
91-
uses: actions/attest-build-provenance@e8998f949152b193b063cb0ec769d69d929409be # v2.4.0
91+
uses: actions/attest-build-provenance@db473fddc028af60658334401dc6fa3ffd8669fd # v2.3.0
9292
with:
9393
subject-name: index.docker.io/${{ env.IMAGE_NAME }}
9494
subject-digest: ${{ steps.push.outputs.digest }}

MODULE.bazel

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

MODULE.bazel.lock

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

WORKSPACE

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,9 @@ http_archive(
99
)
1010

1111
load("@rules_jvm_external//:repositories.bzl", "rules_jvm_external_deps")
12-
1312
rules_jvm_external_deps()
1413

1514
load("@rules_jvm_external//:setup.bzl", "rules_jvm_external_setup")
16-
1715
rules_jvm_external_setup()
1816

1917
load("@rules_jvm_external//:defs.bzl", "maven_install")
@@ -27,7 +25,6 @@ maven_install(
2725
"com.fasterxml.jackson.core:jackson-core:2.18.2",
2826
"com.fasterxml.jackson.core:jackson-databind:2.18.2",
2927
"com.google.guava:guava:33.3.1-jre",
30-
"org.apache.commons:commons-compress:1.27.1",
3128
"org.apache.httpcomponents:httpclient:4.5.14",
3229
# This is the last release that produce Java 8 class files.
3330
"org.eclipse.jgit:org.eclipse.jgit:5.13.3.202401111512-r",
@@ -48,10 +45,10 @@ maven_install(
4845
version = "1.4.4",
4946
),
5047
],
51-
fetch_sources = True,
5248
maven_install_json = "//src:maven_install.json",
5349
repositories = ["https://repo1.maven.org/maven2"],
5450
version_conflict_policy = "pinned",
51+
fetch_sources = True,
5552
)
5653

5754
load("@maven//:defs.bzl", "pinned_maven_install")

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ dev-dependencies = [
3737
"mypy",
3838
"pre-commit",
3939
"responses",
40+
"types-pkg_resources",
4041
"types-python-dateutil",
4142
"types-requests",
4243
"types-tabulate",

smart_tests/__main__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from smart_tests.commands.subset import create_nested_commands as create_subset_target_commands
1414
from smart_tests.utils.test_runner_registry import get_registry
1515

16-
from .commands import compare, inspect, record, stats, subset, verify
16+
from .commands import inspect, record, stats, subset, verify
1717
from .utils import logger
1818
from .utils.env_keys import SKIP_CERT_VERIFICATION
1919
from .version import __version__
@@ -149,7 +149,6 @@ def main(
149149
app.add_typer(verify.app, name="verify")
150150
app.add_typer(inspect.app, name="inspect")
151151
app.add_typer(stats.app, name="stats")
152-
app.add_typer(compare.app, name="compare")
153152

154153
# Add record-target as a sub-app to record command
155154
record.app.add_typer(record_target_app, name="test") # Use NestedCommand version
@@ -161,7 +160,6 @@ def main(
161160
app.add_typer(verify.app, name="verify")
162161
app.add_typer(inspect.app, name="inspect")
163162
app.add_typer(stats.app, name="stats")
164-
app.add_typer(compare.app, name="compare")
165163

166164
app.callback()(main)
167165

smart_tests/commands/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
# commands/__init__.py

smart_tests/commands/compare/__init__.py

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

smart_tests/commands/compare/subsets.py

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

0 commit comments

Comments
 (0)