Skip to content

Commit

Permalink
Merge pull request #109 from epics-containers/dev
Browse files Browse the repository at this point in the history
FInal Support Schema changes
  • Loading branch information
gilesknap authored Sep 25, 2023
2 parents 20a5e58 + 5525e01 commit ff32750
Show file tree
Hide file tree
Showing 17 changed files with 208 additions and 1,234 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,6 @@ jobs:
name: dist
path: dist

- name: Upload support yaml schema
uses: actions/upload-artifact@v3
with:
name: ibek.support.schema.json
path: tests/samples/schemas/ibek.support.schema.json

- name: Check for packaging errors
run: pipx run twine check --strict dist/*

Expand Down Expand Up @@ -145,7 +139,7 @@ jobs:
files: |
dist/*
lockfiles/*
ibek.support.schema.json
tests/samples/schemas/ibek.support.schema.json
generate_release_notes: true

env:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,6 @@ lockfiles/

# ruff cache
.ruff_cache/

# default filename for builder2ibek
**/ibek.support.yaml
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.3.0
hooks:
- id: check-added-large-files
- id: check-yaml
Expand Down
16 changes: 15 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
// To use this debug configuration you must have access to dls-python
// (python 2.7) and downgrade vscode Python extension to 2021.9.1246542782
"name": "builder2ibek",
"type": "python",
"python": "/dls_sw/prod/tools/RHEL7-x86_64/defaults/bin/dls-python",
"request": "launch",
"program": "builder2ibek.support.py",
"console": "integratedTerminal",
"args": [
"/dls_sw/prod/R3.14.12.7/support/ADCore/3-9dls2",
],
"justMyCode": false
},
{
"name": "Debug example test",
"type": "python",
Expand All @@ -22,4 +36,4 @@
},
}
]
}
}
8 changes: 4 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
"python.linting.mypyEnabled": true,
"python.linting.enabled": true,
"python.testing.pytestArgs": [
"--cov=python3_pip_skeleton",
"--cov=ibek",
"--cov-report",
"xml:cov.xml"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.formatting.provider": "black",
"python.languageServer": "Pylance",
"editor.formatOnSave": true,
"[python]": {
"editor.codeActionsOnSave": {
"source.fixAll.ruff": false,
"source.organizeImports.ruff": true
"source.organizeImports.ruff": true,
"source.black": true,
}
}
}
}
1,023 changes: 0 additions & 1,023 deletions Pipfile.lock

This file was deleted.

Loading

0 comments on commit ff32750

Please sign in to comment.