This repository was archived by the owner on May 20, 2023. It is now read-only.
File tree 1 file changed +16
-3
lines changed
1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change 5
5
_name=gitpython
6
6
pkgdesc=" A python library used to interact with Git repositories"
7
7
pkgname=python-gitpython
8
- _commit=35816731917f52dbf00746ec71653fe96e2ad977 # refs/tags/3.1.29
9
- pkgver=3.1.29
8
+ _commit=99258ce146099c962354f405e25fae351669493f # refs/tags/3.1.31
9
+ pkgver=3.1.31
10
10
pkgrel=1
11
11
url=" https://github.com/gitpython-developers/gitpython"
12
12
license=(BSD)
@@ -25,12 +25,25 @@ build() {
25
25
}
26
26
27
27
check () {
28
+ local deselected=(
29
+ --deselect git/ext/gitdb/gitdb/test/db/test_git.py::TestGitDB::test_reading
30
+ --deselect git/ext/gitdb/gitdb/test/db/test_ref.py::TestReferenceDB::test_writing
31
+ --deselect git/ext/gitdb/gitdb/test/performance/test_pack.py::TestPackedDBPerformance::test_correctness
32
+ --deselect git/ext/gitdb/gitdb/test/performance/test_pack.py::TestPackedDBPerformance::test_loose_correctness
33
+ --deselect git/ext/gitdb/gitdb/test/performance/test_pack.py::TestPackedDBPerformance::test_pack_random_access
34
+ --deselect git/ext/gitdb/gitdb/test/performance/test_pack_streaming.py::TestPackStreamingPerformance::test_pack_writing
35
+ --deselect git/ext/gitdb/gitdb/test/performance/test_pack_streaming.py::TestPackStreamingPerformance::test_stream_reading
36
+ --deselect git/ext/gitdb/gitdb/test/test_example.py::TestExamples::test_base
37
+ --deselect test/test_submodule.py::TestSubmodule::test_git_submodules_and_add_sm_with_new_commit
38
+ --deselect test/test_submodule.py::TestSubmodule::test_list_only_valid_submodules
39
+ )
40
+
28
41
cd $_name
29
42
export TRAVIS=" VERY CONVENIENT"
30
43
git config --global user.name " Test User"
31
44
git config --global user.email
" [email protected] "
32
45
./init-tests-after-clone.sh
33
- PYTHONDONTWRITEBYTECODE=1 pytest -v -c /dev/null -k " not test_base and not test_reading and not test_writing "
46
+ PYTHONDONTWRITEBYTECODE=1 pytest -vv -c /dev/null " ${deselected[@]} "
34
47
}
35
48
36
49
package () {
You can’t perform that action at this time.
0 commit comments