Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
satella
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
satella
Commits
264192c1
Commit
264192c1
authored
1 year ago
by
Piotr Maślanka
Committed by
Piotr Maślanka
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
pyproject.toml
parent
9512a609
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.coveragerc
+0
-16
0 additions, 16 deletions
.coveragerc
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
.pylintrc
+0
-10
0 additions, 10 deletions
.pylintrc
pyproject.toml
+33
-7
33 additions, 7 deletions
pyproject.toml
pytest.ini
+0
-3
0 additions, 3 deletions
pytest.ini
with
34 additions
and
36 deletions
.coveragerc
+
0
−
16
View file @
264192c1
[run]
branch=1
source=
satella
concurrency=thread
omit=
tests/*
.eggs/*
setup.py
satella/__init__.py
satella/os/signals.py
[report]
include=
satella/*
This diff is collapsed.
Click to expand it.
.gitignore
+
1
−
0
View file @
264192c1
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
#################
#################
test*.json
test*.json
test*.txt
test*.txt
.pytest_cache
.eggs
.eggs
satella.sublime*
satella.sublime*
hs_err_pid*.log
hs_err_pid*.log
...
...
This diff is collapsed.
Click to expand it.
.pylintrc
deleted
100644 → 0
+
0
−
10
View file @
9512a609
[MASTER]
disable=
C0114, # missing-module-docstring
C0116, # missing-function-docstring
W0603, # global-statement
C0103, # invalid-name
R0913 # too-many-arguments
[FORMAT]
max-line-length=110
This diff is collapsed.
Click to expand it.
pyproject.toml
+
33
−
7
View file @
264192c1
...
@@ -4,13 +4,7 @@ dynamic = ["version"]
...
@@ -4,13 +4,7 @@ dynamic = ["version"]
description
=
"Utilities for writing servers in Python"
description
=
"Utilities for writing servers in Python"
readme
=
{
file
=
"README.md"
,
content-type
=
"text/markdown"
}
readme
=
{
file
=
"README.md"
,
content-type
=
"text/markdown"
}
authors
=
[
authors
=
[
{name
=
"Piotr Maślanka"
,
email
=
"pmaslanka@smok.co"
}
,
{name
=
"Piotr Maślanka"
,
email
=
"pmaslanka@smok.co"
}
{name
=
"Tzu-Ping Chung"
,
email
=
"tzu-ping@example.com"
}
,
{name
=
"Another person"
}
,
{email
=
"different.person@example.com"
}
,
]
maintainers
=
[
{name
=
"Brett Cannon"
,
email
=
"brett@example.com"
}
]
]
requires-python
=
">
=
3.5
"
requires-python
=
">
=
3.5
"
license
=
{
file
=
"LICENSE"
,
text
=
"MIT License"
}
license
=
{
file
=
"LICENSE"
,
text
=
"MIT License"
}
...
@@ -85,3 +79,35 @@ packages = ["satella",
...
@@ -85,3 +79,35 @@ packages = ["satella",
"satella.opentracing"
,
"satella.opentracing"
,
"satella.os"
,
"satella.os"
,
"satella.time"
]
"satella.time"
]
[tool.pytest]
log_cli
=
true
[tool.pylint.format]
max-line-length
=
120
[tool.pylint.MASTER]
disable
=
'''
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
global-statement,
invalid-name,
too-many-arguments
'''
[tool.coverage.run]
branch
=
1
source
=
[
"satella"
]
concurrency
=
"thread"
omit
=
[
"tests/*"
,
".eggs/*"
,
"setup.py"
,
"satella/__init__.py"
,
"satella/os/signals.py"
]
[report]
include
=[
"satella/*"
]
This diff is collapsed.
Click to expand it.
pytest.ini
deleted
100644 → 0
+
0
−
3
View file @
9512a609
[pytest]
log_cli
=
true
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