Skip to content

Commit 0ebd59e

Browse files
authored
Merge pull request #204 from buildingSMART/IVS-556-task-pasta-refactoring
IVS-556 Task pasta refactoring
2 parents 180f893 + c9a09d5 commit 0ebd59e

File tree

21 files changed

+982
-1223
lines changed

21 files changed

+982
-1223
lines changed

.github/workflows/ci_cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
source venv/bin/activate
8585
# use version of ifcopenshell with desired schema parsing
8686
# TODO: revert to pyPI when schema parsing is published in the future
87-
wget -O /tmp/ifcopenshell_python.zip "https://s3.amazonaws.com/ifcopenshell-builds/ifcopenshell-python-311-v0.8.3-260bc80-linux64.zip"
87+
wget -O /tmp/ifcopenshell_python.zip "https://s3.amazonaws.com/ifcopenshell-builds/ifcopenshell-python-311-v0.8.4-6924012-linux64.zip"
8888
mkdir -p venv/lib/python3.11/site-packages
8989
unzip -d venv/lib/python3.11/site-packages /tmp/ifcopenshell_python.zip
9090

backend/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@ venv:
1414
install: venv
1515
$(PIP) install --upgrade pip
1616
find . -name 'requirements.txt' -exec $(PIP) install -r {} \;
17-
wget -O /tmp/ifcopenshell_python.zip "https://s3.amazonaws.com/ifcopenshell-builds/ifcopenshell-python-311-v0.8.3-260bc80-linux64.zip"
17+
wget -O /tmp/ifcopenshell_python.zip "https://s3.amazonaws.com/ifcopenshell-builds/ifcopenshell-python-311-v0.8.4-6924012-linux64.zip"
1818
mkdir -p $(VIRTUAL_ENV)/lib/python3.11/site-packages
1919
unzip -f -d $(VIRTUAL_ENV)/lib/python3.11/site-packages /tmp/ifcopenshell_python.zip
2020
rm /tmp/ifcopenshell_python.zip
2121

2222
install-macos: venv
2323
find . -name 'requirements.txt' -exec $(PIP) install -r {} \;
2424
$(PIP) install -r requirements.txt
25-
wget -O /tmp/ifcopenshell_python.zip "https://s3.amazonaws.com/ifcopenshell-builds/ifcopenshell-python-311-v0.8.3-260bc80-macos64.zip"
25+
wget -O /tmp/ifcopenshell_python.zip "https://s3.amazonaws.com/ifcopenshell-builds/ifcopenshell-python-311-v0.8.4-6924012-macos64.zip"
2626
mkdir -p $(VIRTUAL_ENV)/lib/python3.11/site-packages
2727
unzip /tmp/ifcopenshell_python.zip -d $(VIRTUAL_ENV)/lib/python3.11/site-packages
2828
rm /tmp/ifcopenshell_python.zip
2929

3030
install-macos-m1: venv
3131
find . -name 'requirements.txt' -exec $(PIP) install -r {} \;
3232
$(PIP) install -r requirements.txt
33-
wget -O /tmp/ifcopenshell_python.zip "https://s3.amazonaws.com/ifcopenshell-builds/ifcopenshell-python-311-v0.8.3-260bc80-macosm164.zip"
33+
wget -O /tmp/ifcopenshell_python.zip "https://s3.amazonaws.com/ifcopenshell-builds/ifcopenshell-python-311-v0.8.4-6924012-macosm164.zip"
3434
mkdir -p $(VIRTUAL_ENV)/lib/python3.11/site-packages
3535
unzip /tmp/ifcopenshell_python.zip -d $(VIRTUAL_ENV)/lib/python3.11/site-packages
3636
rm /tmp/ifcopenshell_python.zip
@@ -66,7 +66,7 @@ stop-worker:
6666
-$(PYTHON) -m celery -A core control shutdown \
6767
--destination=worker@$(shell hostname) || true
6868

69-
test: test-models test-bsdd-task test-header-validation-task test-syntax-task test-syntax-header-validation-task test-schema-task
69+
test: test-models test-header-validation-task test-syntax-task test-syntax-header-validation-task test-schema-task
7070

7171
test-models:
7272
MEDIA_ROOT=./apps/ifc_validation/fixtures $(PYTHON) manage.py test apps/ifc_validation_models --settings apps.ifc_validation_models.test_settings --debug-mode --verbosity 3

0 commit comments

Comments
 (0)