Skip to content

Commit a6a31f6

Browse files
authored
Merge pull request #16 from Ekkeskit/test2
Test2
2 parents 0916166 + afc370b commit a6a31f6

15 files changed

+17
-21
lines changed

Procfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web: python back-end/app.py
1+
web: python src/app.py

front-end/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,6 @@ <h1>Upload Files</h1>
9494
{% endfor %}
9595
</ul>
9696
{% endif %}
97-
<script src="download.js"></script>
97+
<script src="/download.js"></script>
9898
</body>
9999
</html>

pyproject.toml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import setuptools
2+
13
[build-system]
24
requires = ["setuptools>=42", "wheel"]
35
build-backend = "setuptools.build_meta"

requirements.txt

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
pytest==7.3.1
2-
pytest-cov==4.0.0
3-
mypy==1.2.0
4-
flake8==6.0.0
5-
black==23.3.0
6-
tox==4.4.12
7-
setuptools==67.6.1
8-
Flask==3.0.2
9-
fpdf==1.7.2
1+
pytest
2+
pytest-cov
3+
mypy
4+
flake8
5+
black
6+
tox
7+
setuptools
8+
Flask
9+
fpdf

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ testing =
1313
black==23.3.0
1414
tox==4.4.12
1515
setuptools==67.6.1
16-
pandas==1.3.3
16+
1717

1818
[flake8]
1919
#Flake8 settings here

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from setuptools import setup
22

33
if __name__ == "__main__":
4-
setup()
4+
setup()
5+

back-end/app.py src/app.py

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/__init__.py

-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +0,0 @@
1-
# The __init__.py file makes Python treat directories containing the file as packages.
2-
#This prevents directories with a common name, such as string,
3-
#unintentionally hiding valid modules that occur later on the module search path.
4-
#In the simplest case, __init__.py can just be an empty file,
5-
#but it can also execute initialization code for the package or set the __all__ variable, described later.

tests/test.py

-2
This file was deleted.

tests/test_file_processing.py

-1
This file was deleted.

tests/tests.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Testing for file processing goes here

0 commit comments

Comments
 (0)