changed project structure

This commit is contained in:
Louis Heredero 2025-01-16 10:48:44 +01:00
parent 151f8492b4
commit 107c338abe
Signed by: HEL
GPG Key ID: 8D83DE470F8544E7
5 changed files with 5 additions and 2 deletions

5
.idea/examen2024.iml generated
View File

@ -1,7 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" />
</content>
<orderEntry type="jdk" jdkName="Python 3.13" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>

0
src/__init__.py Normal file
View File

0
tests/__init__.py Normal file
View File

View File

@ -1,6 +1,6 @@
import unittest
from ex1_triangles import countTriangles
from src.ex1_triangles import countTriangles
class MyTestCase(unittest.TestCase):