Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/dummy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
name: testing dummy CI

# yamllint disable-line rule:truthy
on:
push:
branches:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
name: testing CI

# yamllint disable-line rule:truthy
on:
push:
branches:
Expand Down Expand Up @@ -37,10 +36,6 @@ jobs:
- dependencies: ruff
image: fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT
task: make -f Makefile fmt-travis
# VERIFICATION OF TEST INFRASTRUCTURE
- dependencies: yamllint
image: fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT
task: make -f Makefile yamllint
runs-on: ubuntu-latest
container: ${{ matrix.image }}
steps:
Expand All @@ -58,3 +53,8 @@ jobs:
run: python --version
- name: Run test
run: ${{ matrix.task }}

general_checks:
uses: stratis-storage/github-actions/.github/workflows/reusable_general.yml@master
with:
fedora-container-image-number: 43 # CURRENT DEVELOPMENT ENVIRONMENT
8 changes: 8 additions & 0 deletions .yamllint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
extends: default

rules:
line-length: disable
truthy:
ignore:
.github/workflows/*.yml
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Recommended release for development: Fedora 39
- Change StartPool invocation for new revision (reverted):
https://github.com/stratis-storage/testing/pull/263

- Verify intergrity meta-allocation is rounded (reverted):
- Verify integrity meta-allocation is rounded (reverted):
https://github.com/stratis-storage/testing/pull/279

- Make RAID metadata tests more interesting (reverted):
Expand Down
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,12 @@ fmt-travis:
.PHONY: yamllint
yamllint:
yamllint --strict .github/workflows/*.yml
yamllint --strict .yamllint.yaml

.PHONY: check-typos
check-typos:
typos

.PHONY: fix-typos
fix-typos:
typos -w
1 change: 1 addition & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
default.extend-ignore-re = ["a(.*)"] # ignore D-Bus introspection data
2 changes: 1 addition & 1 deletion testlib/infra.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ class MountPointManager:

def __init__(self):
"""
Initalizer.
Initializer.

:rtype: None
"""
Expand Down