Skip to content

Commit d5f0d48

Browse files
committed
Revert moving tests out of 'git' folder, related to #1030
1 parent fe65adc commit d5f0d48

File tree

104 files changed

+50
-47
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+50
-47
lines changed

.deepsource.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version = 1
22

33
test_patterns = [
4-
'test/**/test_*.py'
4+
'git/test/**/test_*.py'
55
]
66

77
exclude_patterns = [

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
test/fixtures/* eol=lf
1+
git/test/fixtures/* eol=lf
22
init-tests-after-clone.sh

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
git config --global user.name "Travis Runner"
4141
# If we rewrite the user's config by accident, we will mess it up
4242
# and cause subsequent tests to fail
43-
cat test/fixtures/.gitconfig >> ~/.gitconfig
43+
cat git/test/fixtures/.gitconfig >> ~/.gitconfig
4444
- name: Lint with flake8
4545
run: |
4646
set -x

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ script:
3636
# Make sure we limit open handles to see if we are leaking them
3737
- ulimit -n 128
3838
- ulimit -n
39-
- coverage run --omit="test/*" -m unittest --buffer
39+
- coverage run --omit="git/test/*" -m unittest --buffer
4040
- coverage report
4141
- if [ "$TRAVIS_PYTHON_VERSION" == '3.5' ]; then cd doc && make html; fi
4242
- if [ "$TRAVIS_PYTHON_VERSION" == '3.6' ]; then flake8 --ignore=W293,E265,E266,W503,W504,E731; fi

MANIFEST.in

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ include AUTHORS
55
include CONTRIBUTING.md
66
include README.md
77
include requirements.txt
8+
include test-requirements.txt
89

910
recursive-include doc *
10-
recursive-exclude test *
11+
12+
graft git/test/fixtures
13+
graft git/test/performance
1114

1215
global-exclude __pycache__ *.pyc
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)