-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b6514d
commit 5c7c5f4
Showing
16 changed files
with
276 additions
and
260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -141,3 +141,7 @@ jobs: | |
- name: Upload coverage report | ||
uses: codecov/[email protected] | ||
run: | | ||
codecov | ||
env: # Or as an environment variable | ||
super_secret: ${{ secrets.CODECOV_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,4 +136,4 @@ dmypy.json | |
# Cython debug symbols | ||
cython_debug/ | ||
|
||
src/pysmooth/debug.py | ||
debug.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[mypy] | ||
strict = True | ||
warn_unreachable = True | ||
pretty = True | ||
show_column_numbers = True | ||
show_error_codes = True | ||
show_error_context = True | ||
disallow_untyped_decorators = False | ||
|
||
[mypy-hypothesis.*] | ||
ignore_missing_imports = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from typing import List | ||
|
||
def test_hypo_3RS3R_int(x: List[float]) -> None: ... | ||
def test_hypo_3RSS_int(x: List[float]) -> None: ... | ||
def test_hypo_3RSR_int(x: List[float]) -> None: ... | ||
def test_hypo_3R_int(x: List[float]) -> None: ... | ||
def test_hypo_3_int(x: List[float]) -> None: ... | ||
def test_hypo_3_2(x: List[float]) -> None: ... | ||
def test_hypo_S_int(x: List[float]) -> None: ... | ||
def test_hypo_3RS3R_float(x: List[float]) -> None: ... | ||
def test_hypo_3RSS_float(x: List[float]) -> None: ... | ||
def test_hypo_3RSR_float(x: List[float]) -> None: ... | ||
def test_hypo_3R_float(x: List[float]) -> None: ... | ||
def test_hypo_3_float(x: List[float]) -> None: ... | ||
def test_hypo_S_float(x: List[float]) -> None: ... |
Oops, something went wrong.