Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add derating criteria for fuse, relay, resistor, and switch #1051

Merged
merged 22 commits into from
Apr 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
09408c3
build: add step to add status:close label on PR close
weibullguy Apr 1, 2022
8dcfe32
feat: add SD-18 derating criteria to config file
weibullguy Apr 5, 2022
15ed066
build: update dependency versions
weibullguy Apr 6, 2022
35e126a
refactor: create package for derating analysis
weibullguy Apr 8, 2022
96d3fa2
feat: add IC derating model and tests
weibullguy Apr 8, 2022
eb453b0
feat: add semiconductor derating model and tests
weibullguy Apr 8, 2022
0ce21bb
feat: add capacitor derating model and tests
weibullguy Apr 8, 2022
cba2355
feat: add connection derating model and tests
weibullguy Apr 8, 2022
49e9bef
feat: add indcutor derating model and tests
weibullguy Apr 8, 2022
cb38cf7
feat: add lamp derating model and tests
weibullguy Apr 9, 2022
1b24184
feat: add relay derating model and tests
weibullguy Apr 9, 2022
49ea398
feat: add resistor derating model and tests
weibullguy Apr 10, 2022
fd76f57
feat: add switch derating model and tests
weibullguy Apr 10, 2022
36624bc
test: rename derating tests to avoid import mismatch
weibullguy Apr 10, 2022
9895cc3
test: update derating tests to call proper function
weibullguy Apr 11, 2022
ec59e17
test: update design electric record tests
weibullguy Apr 13, 2022
95e2ce6
test: update hardware BoM view tests
weibullguy Apr 14, 2022
3331eb4
test: update conftest.py to use f-strings
weibullguy Apr 14, 2022
43714a2
test: add tests for coverage
weibullguy Apr 14, 2022
0f1c43e
style: add/upate stub files
weibullguy Apr 14, 2022
ba01850
test: update failing test
weibullguy Apr 14, 2022
5f50409
style: fix code smells
weibullguy Apr 14, 2022
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
9 changes: 9 additions & 0 deletions .github/workflows/on-pr-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@ on:
- closed

jobs:
label_pr_closed:
runs-on: ubuntu-latest
steps:
- name: Add in progress label
uses: andymckay/labeler@master
with:
add-labels: "status: closed"
remove-labels: "status: inprogress"

tag-version:
name: Push Version Tag
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ coverage: clean-test
# This target is for use with IDE integration.
format:
@echo -e "\n\t\033[1;32mAutoformatting $(SRCFILE) ...\033[0m\n"
$(BLACK) $(SRCFILE)
$(BLACK) --fast $(SRCFILE)
$(ISORT) $(ISORT_ARGS) $(SRCFILE)
$(DOCFORMATTER) $(DOCFORMATTER_ARGS) $(SRCFILE)

Expand Down
383 changes: 373 additions & 10 deletions data/RAMSTK.toml

Large diffs are not rendered by default.

Loading