Skip to content

Commit 8c272b5

Browse files
Merge pull request #39 from Coding-Dev-Tools/improve/configdrift-20250630
improve: fix pyproject.toml optional-deps key conflict and clean .gitignore
2 parents 81f4129 + d57b7c6 commit 8c272b5

3 files changed

Lines changed: 3 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
python-version: ["3.10", "3.11", "3.12", "3.13"]
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2121
with:
2222
persist-credentials: false
2323

2424
- name: Set up Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
cache: "pip"
@@ -35,5 +35,3 @@ jobs:
3535
- name: Lint with ruff
3636
run: ruff check src/ tests/
3737
- name: Run tests
38-
run: |
39-
python -m pytest tests/ -v --cov=src --cov-report=term-missing

.gitignore

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ __pycache__/
55

66
# C extensions
77
*.so
8-
98
# Distribution / packaging
109
.Python
1110
build/
@@ -22,15 +21,12 @@ var/
2221
wheels/
2322
*.egg-info/
2423
*.egg
25-
2624
# PyInstaller
2725
*.manifest
2826
*.spec
29-
3027
# Installer logs
3128
pip-log.txt
3229
pip-delete-this-directory.txt
33-
3430
# Unit test / coverage
3531
htmlcov/
3632
.tox/
@@ -44,29 +40,24 @@ coverage.xml
4440
*.py,cover
4541
.hypothesis/
4642
.pytest_cache/
47-
4843
# Translations
4944
*.mo
5045
*.pot
51-
5246
# Environments
5347
.env
5448
.venv
5549
env/
5650
venv/
5751
ENV/
58-
5952
# IDE
6053
.vscode/
6154
.idea/
6255
*.swp
6356
*.swo
6457
*~
65-
6658
# OS
6759
.DS_Store
6860
Thumbs.db
69-
7061
# Project specific
7162
research/
7263
fixtures/generated/

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dev = [
3636
"ruff>=0.4.0",
3737
]
3838
toml = ["tomli>=2.0.0", "tomli-w>=1.0.0"]
39-
license = ["revenueholdings-license>=0.1.0"]
39+
license-check = ["revenueholdings-license>=0.1.0"]
4040

4141
[project.urls]
4242
Homepage = "https://github.com/Coding-Dev-Tools/configdrift"

0 commit comments

Comments
 (0)