Skip to content

Commit a778dd2

Browse files
authored
Metrics (#179)
Signed-off-by: Kushal Batra <[email protected]>
1 parent 485d59a commit a778dd2

File tree

149 files changed

+471
-29910
lines changed

Some content is hidden

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

149 files changed

+471
-29910
lines changed

.codecov.yml

-10
This file was deleted.

.coveragerc

-5
This file was deleted.

.dockerignore

-16
This file was deleted.

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# These owners will be the default owners for everything in
22
# the repo. Unless a later match takes precedence
3-
* @ab93 @nkoppisetty @vigith @s0nicboOm
3+
* @ab93 @vigith @s0nicboOm

.github/workflows/build-go.yml

-48
This file was deleted.

.github/workflows/changelog.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
name: Generate changelog
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
with:
1515
ref: main
1616
fetch-depth: 0

.github/workflows/ci.yml

-59
This file was deleted.

.github/workflows/coverage.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.10"]
16+
python-version: ["3.11"]
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020

2121
- name: Install poetry
22-
run: pipx install poetry==1.4.2
22+
run: pipx install poetry==1.8.3
2323

2424
- name: Set up Python ${{ matrix.python-version }}
2525
uses: actions/setup-python@v4
@@ -31,15 +31,19 @@ jobs:
3131
run: |
3232
poetry env use ${{ matrix.python-version }}
3333
poetry install --all-extras --with dev
34-
poetry run pip install --no-cache -r requirements/requirements-torch.txt
3534
3635
- name: Run Coverage
3736
run: |
3837
poetry run pytest --cov-report=xml --cov=numaprom --cov-config .coveragerc tests/ -sq
3938
39+
- name: Run Coverage
40+
run: |
41+
poetry run pytest --cov-report=xml --cov=numalogic --cov-config .coveragerc tests/ -sq
42+
4043
- name: Upload Coverage
41-
uses: codecov/codecov-action@v3
44+
uses: codecov/codecov-action@v4
4245
with:
46+
token: ${{ secrets.CODECOV_TOKEN }}
4347
files: ./coverage.xml
4448
fail_ci_if_error: true
4549
verbose: true

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Black format
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: psf/black@stable
1616
with:
1717
options: "--check --verbose"

.github/workflows/pypi.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: [ "3.10" ]
15+
python-version: [ "3.11" ]
1616

1717
name: Publish to PyPi
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020

2121
- name: Install poetry
22-
run: pipx install poetry==1.4.2
22+
run: pipx install poetry==1.8.3
2323

2424
- name: Set up Python ${{ matrix.python-version }}
2525
uses: actions/setup-python@v4

.github/workflows/release-go.yaml

-59
This file was deleted.

.gitignore

+42-8
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,11 @@ parts/
2020
sdist/
2121
var/
2222
wheels/
23-
pip-wheel-metadata/
2423
share/python-wheels/
2524
*.egg-info/
2625
.installed.cfg
2726
*.egg
2827
MANIFEST
29-
prometheus-serde/vendor
30-
prometheus-serde/dist
31-
prometheus-serde/coverage.out
3228

3329
# PyInstaller
3430
# Usually these files are written by a python script from a template
@@ -53,6 +49,7 @@ coverage.xml
5349
*.py,cover
5450
.hypothesis/
5551
.pytest_cache/
52+
cover/
5653

5754
# Translations
5855
*.mo
@@ -75,8 +72,13 @@ instance/
7572
docs/_build/
7673

7774
# PyBuilder
75+
.pybuilder/
7876
target/
7977

78+
#mlflow
79+
/.mlruns
80+
*.db
81+
8082
# Jupyter Notebook
8183
.ipynb_checkpoints
8284

@@ -85,7 +87,9 @@ profile_default/
8587
ipython_config.py
8688

8789
# pyenv
88-
.python-version
90+
# For a library or package, you might want to ignore these files since the code is
91+
# intended to run in multiple environments; otherwise, check them in:
92+
# .python-version
8993

9094
# pipenv
9195
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
@@ -94,7 +98,22 @@ ipython_config.py
9498
# install all needed dependencies.
9599
#Pipfile.lock
96100

97-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
101+
# poetry
102+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
103+
# This is especially recommended for binary packages to ensure reproducibility, and is more
104+
# commonly ignored for libraries.
105+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
106+
#poetry.lock
107+
108+
# pdm
109+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
110+
#pdm.lock
111+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
112+
# in version control.
113+
# https://pdm.fming.dev/#use-with-ide
114+
.pdm.toml
115+
116+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
98117
__pypackages__/
99118

100119
# Celery stuff
@@ -131,8 +150,23 @@ dmypy.json
131150
# Pyre type checker
132151
.pyre/
133152

134-
# Jetbrains project
153+
# pytype static type analyzer
154+
.pytype/
155+
156+
# Cython debug symbols
157+
cython_debug/
158+
159+
# PyCharm
160+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
161+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
162+
# and can be added to the global gitignore or merged into this file. For a more nuclear
163+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
135164
.idea/
136165

166+
#script output
167+
.btoutput/
168+
137169
# Mac related
138-
.DS_Store
170+
*.DS_Store
171+
172+
.python-version

0 commit comments

Comments
 (0)