Move tests outside src, as per convention. See #1711.

This commit is contained in:
Dion Moult
2021-08-31 13:57:38 +10:00
parent 829ff5e152
commit 770f35fd97
4 changed files with 17 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
.PHONY: test
test:
pytest -o "testpaths=test"
.PHONY: coverage
coverage:
coverage run --source ifcopenshell -m pytest
coverage html
xdg-open htmlcov/index.html
.PHONY: clean
clean:
rm -rf htmlcov
+3
View File
@@ -0,0 +1,3 @@
# ifcopenshell-python
Python bindings, utility functions, and high-level API for IfcOpenShell.
@@ -1,5 +1,5 @@
import unittest
import ids
from ifcopenshell import ids
# from ids import ids
import requests