Skip to content

Commit 4bc2ed7

Browse files
committed
Merge branch 'dev' of github.com:appalca/appabuild into update/bw25
2 parents 467ee3d + 71f88fe commit 4bc2ed7

5 files changed

Lines changed: 7 additions & 9 deletions

File tree

appabuild/cli/lca.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,13 @@ def build(
4343
raise ValueError()
4444
foreground_database = setup.initialize(appabuild_config_path)
4545

46-
setup.build(lca_config_path, foreground_database)
47-
48-
"""
49-
except (ValueError, ValidationError, BwDatabaseError) as e:
46+
try:
47+
setup.build(lca_config_path, foreground_database)
48+
except (ValueError, ValidationError, BwDatabaseError):
5049
sys.exit(1)
5150
except Exception as e:
5251
logger.exception(str(e))
5352
sys.exit(1)
54-
"""
5553

5654

5755
@app.command()

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ ipython>=7.6.0,<=8.34.0
3333
pre-commit
3434
hatchling
3535
click==8.1.8
36-
mermaid-py==0.7.1
36+
mermaid-py==0.7.1

tests/data/cmd_build/appalca_conf_wo_ei.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ replace_bg: True
33
databases:
44
foreground:
55
name: user_database
6-
path: './tests/data/cmd_build/foreground_datasets'
6+
path: './tests/data/cmd_build/foreground_datasets'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
ai_use_phase: 11.0337712128
22
nvidia_ai_gpu_chip: 20.195432424653397
3-
nvidia_gpu_chip_manufacturing: 9.161661211853396
3+
nvidia_gpu_chip_manufacturing: 9.161661211853396

tests/data/cmd_build/nvidia_ai_gpu_chip_expected.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ tree:
102102
properties: {}
103103
amount: '1.0'
104104
properties: {}
105-
amount: '1.0'
105+
amount: '1.0'

0 commit comments

Comments
 (0)