Skip to content

Commit d953478

Browse files
authored
Merge pull request #3 from caseybecking/feature/csv-imports-and-tests
Add CSV import features, test suite improvements, and documentation
2 parents 43b528c + b7ec4d3 commit d953478

41 files changed

Lines changed: 7772 additions & 179 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.coveragerc

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[run]
2+
source = api,app
3+
omit =
4+
*/tests/*
5+
*/venv/*
6+
*/virtualenv/*
7+
*/__pycache__/*
8+
*/site-packages/*
9+
*/migrations/*
10+
11+
[report]
12+
precision = 2
13+
show_missing = True
14+
skip_covered = False
15+
16+
[html]
17+
directory = htmlcov

Pipfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ requests = "*"
1818
babel = "*"
1919

2020
[dev-packages]
21+
pytest = "*"
22+
pytest-cov = "*"
23+
pytest-flask = "*"
24+
faker = "*"
2125

2226
[requires]
2327
python_version = "3.11"

0 commit comments

Comments
 (0)