Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
rechunk-data
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ch1187
rechunk-data
Commits
ca14198c
Commit
ca14198c
authored
1 month ago
by
Etor Lucio Eceiza
Browse files
Options
Downloads
Patches
Plain Diff
add: Makefile for dev env
parent
14d11023
No related branches found
No related tags found
1 merge request
!15
add functionality to allow prioritizing horizontal chunking over temporal dimension
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+19
-0
19 additions, 0 deletions
Makefile
setup.py
+3
-2
3 additions, 2 deletions
setup.py
with
22 additions
and
2 deletions
Makefile
0 → 100644
+
19
−
0
View file @
ca14198c
# makefile used for testing
#
#
all
:
install test
install
:
python3
-m
pip
install
-e
.[test]
test
:
python3
-m
pytest
-vv
\
--cov
=
$(
PWD
)
/src/rechunk_data
--cov-report
=
html:coverage_report
\
--junitxml
report.xml
--cov-report
xml
\
$(
PWD
)
/src/rechunk_data/tests
python3
-m
coverage report
lint
:
mypy
--install-types
--non-interactive
black
--check
-t
py310
-l
79 src
flake8 src/rechunk_data
--count
--max-complexity
=
15
--max-line-length
=
88
--statistics
--doctests
\ No newline at end of file
This diff is collapsed.
Click to expand it.
setup.py
+
3
−
2
View file @
ca14198c
#!/usr/bin/env python3
"""
Setup script for packaging checkin.
"""
"""
Setup script for packaging check
-
in.
"""
import
json
from
pathlib
import
Path
...
...
@@ -51,9 +51,10 @@ setup(
"
pytest-cov
"
,
"
testpath
"
,
"
types-mock
"
,
"
flake8
"
,
],
},
python_requires
=
"
>=3.
6
"
,
python_requires
=
"
>=3.
9
"
,
classifiers
=
[
"
Development Status :: 3 - Alpha
"
,
"
Environment :: Console
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment