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
41f9470d
Commit
41f9470d
authored
4 years ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
add tests for Python 3.9, fix setup.cfg
parent
4cb581b3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.travis.yml
+7
-0
7 additions, 0 deletions
.travis.yml
setup.cfg
+7
-1
7 additions, 1 deletion
setup.cfg
setup.py
+1
-9
1 addition, 9 deletions
setup.py
with
15 additions
and
10 deletions
.travis.yml
+
7
−
0
View file @
41f9470d
...
...
@@ -43,6 +43,13 @@ jobs:
after_script
:
-
coverage xml
-
./cc-test-reporter after-build -t coverage.py --exit-code $TRAVIS_TEST_RESULT
-
stage
:
test
python
:
"
3.9"
script
:
-
pytest -n 8 --cov=satella
after_script
:
-
coverage xml
-
./cc-test-reporter after-build -t coverage.py --exit-code $TRAVIS_TEST_RESULT
-
stage
:
test
python
:
"
pypy3.5"
script
:
...
...
This diff is collapsed.
Click to expand it.
setup.cfg
+
7
−
1
View file @
41f9470d
...
...
@@ -22,7 +22,6 @@ classifier =
Programming
Language :: Python :: 3.9
Programming
Language :: Python :: Implementation :: CPython
Programming
Language :: Python :: Implementation :: PyPy
Operating
System :: POSIX
Operating
System :: OS Independent
Development
Status :: 5 - Production/Stable
License
:: OSI Approved :: MIT License
...
...
@@ -41,3 +40,10 @@ universal = 1
install_requires
=
psutil
python_requires
= !=2.7.
*
,!=3.0.
*
,!=3.1.
*
,!=3.2.
*
,!=3.3.
*
,!=3.4.
*
extras_require
=
HTTPJSONSource
= requests
YAMLSource
= pyyaml
TOMLSource
= toml
FasterJSON
= ujson
cassandra
= cassandra-driver
opentracing
= opentracing
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
9
View file @
41f9470d
...
...
@@ -4,13 +4,5 @@ from satella import __version__
setup
(
packages
=
find_packages
(
include
=
[
'
satella
'
,
'
satella.*
'
]),
version
=
__version__
,
test_suite
=
'
nose2.collector.collector
'
,
extras_require
=
{
'
HTTPJSONSource
'
:
[
'
requests
'
],
'
YAMLSource
'
:
[
'
pyyaml
'
],
'
TOMLSource
'
:
[
'
toml
'
],
'
FasterJSON
'
:
[
'
ujson
'
],
'
cassandra
'
:
[
'
cassandra-driver
'
],
'
opentracing
'
:
[
'
opentracing
'
]
}
test_suite
=
'
nose2.collector.collector
'
)
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