Skip to content

Commit 48118db

Browse files
committed
chore: merge with main
2 parents 792540f + 82dd470 commit 48118db

Some content is hidden

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

53 files changed

+2013
-3109
lines changed

.github/workflows/build-test-release.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -83,21 +83,6 @@ jobs:
8383
poetry install
8484
poetry run pytest -v tests/unit
8585
86-
test-splunk-doc:
87-
name: Test Docs
88-
runs-on: ubuntu-latest
89-
steps:
90-
- uses: actions/checkout@v4
91-
with:
92-
submodules: true
93-
- uses: actions/setup-python@v5
94-
with:
95-
python-version: 3.7
96-
- name: Install and run tests
97-
run: |
98-
curl -sSL https://install.python-poetry.org | python3 - --version 1.5.1
99-
poetry install --with docs
100-
poetry run pytest -v -m doc tests/e2e
10186
10287
test-splunk-external:
10388
runs-on: ubuntu-latest
@@ -106,7 +91,6 @@ jobs:
10691
- pre-commit
10792
- fossa-scan
10893
- compliance-copyrights
109-
- test-splunk-doc
11094
- test-splunk-unit
11195
strategy:
11296
fail-fast: false
@@ -151,7 +135,6 @@ jobs:
151135
- pre-commit
152136
- fossa-scan
153137
- compliance-copyrights
154-
- test-splunk-doc
155138
- test-splunk-unit
156139
runs-on: ubuntu-latest
157140
strategy:

.github/workflows/docs.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: docs
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
branches:
8+
- main
9+
10+
jobs:
11+
docs:
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: write
15+
pages: write
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: actions/setup-python@v5
19+
with:
20+
python-version: 3.8
21+
- run: |
22+
curl -sSL https://install.python-poetry.org | python3 - --version 1.5.1
23+
pip install mkdocs mkdocs-material mkdocstrings-python
24+
- name: Deploy to GitHub Pages
25+
if: github.ref_name == 'main'
26+
run: mkdocs gh-deploy --force
27+
- name: Build Docs
28+
if: github.ref_name != 'main'
29+
run: mkdocs build

.licenserc.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,3 @@ header:
3737
- "renovate.json"
3838
- "pytest_splunk_addon/.ignore_splunk_internal_errors"
3939
- "pytest_splunk_addon/docker_class.py"
40-
- "requirements.txt"

.readthedocs.yml

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

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# pytest-splunk-addon
2+
3+
![PyPI](https://img.shields.io/pypi/v/pytest-splunk-addon)
4+
![Python](https://img.shields.io/pypi/pyversions/pytest-splunk-addon.svg)
5+
6+
## What is PSA
7+
8+
A Dynamic test tool for Splunk Apps and Add-ons.
9+
10+
## Usage
11+
12+
For full usage instructions, please visit the [documentation](https://splunk.github.io/pytest-splunk-addon).

README.rst

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

0 commit comments

Comments
 (0)