Skip to content

Commit 31c0ae7

Browse files
authored
Merge pull request #147 from 3DBAG/fix/floors-estimation-test
Fix/floors estimation test
2 parents a462c36 + c4c49da commit 31c0ae7

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ at your option.
6868
## Contribution
6969

7070
Unless you explicitly state otherwise, any contribution intentionally submitted
71-
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any
72-
additional terms or conditions.
71+
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
7372

7473
## 3DBAG organisation
7574

docker/postgres/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM postgis/postgis:14-3.4
1+
FROM postgis/postgis:14-3.4
22

33
LABEL org.opencontainers.image.authors="Gina Stavropoulou <[email protected]>, Balázs Dukai <[email protected]>"
44

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ include .env
8888
download:
8989
rm -rf $(BAG3D_TEST_DATA)
9090
mkdir -p $(BAG3D_TEST_DATA)
91-
cd $(BAG3D_TEST_DATA) ; curl -O https://data.3dbag.nl/testdata/pipeline/test_data_v7.zip ; unzip -q test_data_v7.zip ; rm test_data_v7.zip
91+
cd $(BAG3D_TEST_DATA) ; curl -O https://data.3dbag.nl/testdata/pipeline/test_data_v8.zip ; unzip -q test_data_v8.zip ; rm test_data_v8.zip
9292

9393

9494
install_uv:

packages/floors_estimation/tests/test_floors_estimation.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from pathlib import Path
22

3-
import pytest
43
from bag3d.common.types import PostgresTableIdentifier
54
from bag3d.common.utils.database import table_exists
65
from bag3d.floors_estimation.assets.floors_estimation import (
@@ -97,7 +96,6 @@ def test_all_features(context):
9796
assert table_exists(context, all_features_table) is True
9897

9998

100-
@pytest.mark.skip(reason="Needs fixing")
10199
def test_preprocessed_features(context):
102100
all_features_table = PostgresTableIdentifier(
103101
"floors_estimation", "building_features_all"

0 commit comments

Comments
 (0)