Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
squareui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
cubicweb
cubes
squareui
Commits
8cd393f42052
Commit
8cd393f42052
authored
6 years ago
by
Nsukami Patrick
Browse files
Options
Downloads
Patches
Plain Diff
New style: add basic tox configuration and remove useless pytestconf.py
parent
e88480f4395e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
test/pytestconf.py
+0
-60
0 additions, 60 deletions
test/pytestconf.py
tox.ini
+24
-0
24 additions, 0 deletions
tox.ini
with
24 additions
and
60 deletions
test/pytestconf.py
deleted
100644 → 0
+
0
−
60
View file @
e88480f4
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
#
# This file is part of CubicWeb.
#
# CubicWeb is free software: you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 2.1 of the License, or (at your option)
# any later version.
#
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>.
"""
"""
import
os
import
sys
from
logilab.common.pytest
import
PyTester
def
getlogin
():
"""
avoid usinng os.getlogin() because of strange tty / stdin problems
(man 3 getlogin)
Another solution would be to use $LOGNAME, $USER or $USERNAME
"""
if
sys
.
platform
==
'
win32
'
:
return
os
.
environ
.
get
(
'
USERNAME
'
)
or
'
cubicweb
'
import
pwd
return
pwd
.
getpwuid
(
os
.
getuid
())[
0
]
def
update_parser
(
parser
):
login
=
getlogin
()
parser
.
add_option
(
'
-r
'
,
'
--rebuild-database
'
,
dest
=
'
rebuild_db
'
,
default
=
False
,
action
=
"
store_true
"
,
help
=
"
remove tmpdb and rebuilds the test database
"
)
parser
.
add_option
(
'
-u
'
,
'
--dbuser
'
,
dest
=
'
dbuser
'
,
action
=
'
store
'
,
default
=
login
,
help
=
"
database user
"
)
parser
.
add_option
(
'
-w
'
,
'
--dbpassword
'
,
dest
=
'
dbpassword
'
,
action
=
'
store
'
,
default
=
login
,
help
=
"
database user
'
s password
"
)
parser
.
add_option
(
'
-n
'
,
'
--dbname
'
,
dest
=
'
dbname
'
,
action
=
'
store
'
,
default
=
None
,
help
=
"
database name
"
)
parser
.
add_option
(
'
--euser
'
,
dest
=
'
euser
'
,
action
=
'
store
'
,
default
=
login
,
help
=
"
euser name
"
)
parser
.
add_option
(
'
--epassword
'
,
dest
=
'
epassword
'
,
action
=
'
store
'
,
default
=
login
,
help
=
"
euser
'
s password
'
name
"
)
return
parser
class
CustomPyTester
(
PyTester
):
def
__init__
(
self
,
cvg
,
options
):
super
(
CustomPyTester
,
self
).
__init__
(
cvg
,
options
)
if
options
.
rebuild_db
:
os
.
unlink
(
'
tmpdb
'
)
os
.
unlink
(
'
tmpdb-template
'
)
This diff is collapsed.
Click to expand it.
tox.ini
0 → 100644
+
24
−
0
View file @
8cd393f4
[tox]
envlist
=
py27,py3,flake8
[testenv]
deps
=
pytest
commands
=
{envpython}
-m
pytest
{posargs:test}
[pytest]
python_files
=
*test_*.py
testpaths
=
test
addopts
=
-r fEs
[testenv:flake8]
basepython
=
python3
skip_install
=
true
deps
=
flake8
commands
=
flake8
[flake8]
max-line-length
=
120
exclude
=
test/data/*,.tox/*,doc/*
\ No newline at end of file
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