Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gdt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
ag-ohlberger
dune-community
dune-gdt
Commits
51f7bed8
Verified
Commit
51f7bed8
authored
5 years ago
by
René Fritze
Browse files
Options
Downloads
Patches
Plain Diff
udpate pylicense to ignore .ci/shared submodule
parent
b1164248
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.pylicense-cpp.py
+3
-2
3 additions, 2 deletions
.pylicense-cpp.py
.pylicense-other.py
+3
-2
3 additions, 2 deletions
.pylicense-other.py
python/pytest.ini
+0
-3
0 additions, 3 deletions
python/pytest.ini
python/setup.cfg
+43
-0
43 additions, 0 deletions
python/setup.cfg
with
49 additions
and
7 deletions
.pylicense-cpp.py
+
3
−
2
View file @
51f7bed8
...
...
@@ -6,7 +6,8 @@
# or GPL-2.0+ (http://opensource.org/licenses/gpl-license)
# with "runtime exception" (http://www.dune-project.org/license.html)
# Authors:
# René Fritze (2018)
# René Fritze (2018)
# Tobias Leibner (2019)
# ~~~
name
=
'
This file is part of the dune-gdt project:
'
...
...
@@ -19,4 +20,4 @@ prefix = '//'
include_patterns
=
(
'
*.cc
'
,
'
*.cxx
'
,
'
*.hh
'
,
'
*.hxx
'
,
'
*cmake_config.h.in
'
,
'
*headercheck.cpp.in
'
,
'
*config.h.cmake
'
,
'
*version.hh.in
'
,
'
*.pbh
'
,
'
*.tpl
'
)
exclude_patterns
=
(
'
*mathexpr.*
'
,
'
*gtest-all.cc
'
,
'
*.vcsetup*
'
)
exclude_patterns
=
(
'
*mathexpr.*
'
,
'
*gtest-all.cc
'
,
'
*.vcsetup*
'
,
'
*.ci/shared/*
'
)
This diff is collapsed.
Click to expand it.
.pylicense-other.py
+
3
−
2
View file @
51f7bed8
...
...
@@ -6,7 +6,8 @@
# or GPL-2.0+ (http://opensource.org/licenses/gpl-license)
# with "runtime exception" (http://www.dune-project.org/license.html)
# Authors:
# René Fritze (2018)
# René Fritze (2018)
# Tobias Leibner (2019)
# ~~~
name
=
'
This file is part of the dune-gdt project:
'
...
...
@@ -23,4 +24,4 @@ include_patterns = ('*.txt', '*.cmake', '*.py', '*.sh', '*.bash', '*.dgf', '*.ms
'
*.gitignore
'
,
'
*.mailmap
'
,
'
*.gitattributes
'
,
'
*gitignore-*
'
,
'
*stamp-vc
'
,
'
*dune.module
'
,
'
*Doxylocal
'
,
'
*.clang-format
'
,
'
*COPYING-CMAKE-SCRIPTS
'
,
'
*README
'
,
'
*LICENSE
'
,
'
*mainpage
'
,
'
*switch-build_dir
'
,
'
*dune-xt-common.pc.in
'
,
'
*CMakeLists.txt
'
)
exclude_patterns
=
(
'
*config.h.cmake
'
,
'
*.vcsetup*
'
,
'
*builder_definitions.cmake
'
)
exclude_patterns
=
(
'
*config.h.cmake
'
,
'
*.vcsetup*
'
,
'
*builder_definitions.cmake
'
,
'
*.ci/shared/*
)
This diff is collapsed.
Click to expand it.
python/pytest.ini
deleted
100644 → 0
+
0
−
3
View file @
b1164248
[pytest]
pep8maxlinelength
=
120
pep8ignore
=
E221,E226,E241,E242
This diff is collapsed.
Click to expand it.
python/setup.cfg
0 → 100644
+
43
−
0
View file @
51f7bed8
# ~~~
# This
file is part of the dune-xt-common project:
# https://github.com/dune-community/dune-xt-common
# Copyright
2009-2018 dune-xt-common developers and contributors. All rights reserved.
# License:
Dual licensed as BSD 2-Clause License (http://opensource.org/licenses/BSD-2-Clause)
# or
GPL-2.0+ (http://opensource.org/licenses/gpl-license)
# with
"runtime exception" (http://www.dune-project.org/license.html)
# Authors:
# Rene
Fritze (2018)
# ~~~
[aliases]
test
= pytest
[pep8]
max-line-length
= 120
ignore
= E221,E226,E241,E242, W0105, N803, N806
# E221
multiple spaces before operator
# E226
missing whitespace around arithmetic operator [ignored by default]
# E241
multiple spaces after ':' [ignored by default]
# E242
tab after `,' [ignored by default]
# W0105
String statement has no effect (we use triple qoted strings as documentation in some files)
# N803
argument name should be lowercase (we use single capital letters everywhere for vectorarrays)
# N806
same for variables in function
[flake8]
max-line-length
= 120
ignore
= E221,E226,E241,E242, W0105, N803, N806
# The
following exclude avoids wrong warnings for unused imports
exclude
= __init__.py
[tool:pytest]
testpaths
= test/
python_files
= test/
*
.py
python_class
= Test
pep8maxlinelength
= 120
pep8ignore
= E221,E226,E241,E242
addopts=
-p no:warnings
[metadata]
# this
is mandatory to lave license end up in .whl
license_file
= LICENSE.txt
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