summaryrefslogtreecommitdiff
path: root/gitdb/test/test_pack.py
diff options
context:
space:
mode:
authorCarl George <carl@george.computer>2022-02-09 17:15:39 -0600
committerSebastian Thiel <sebastian.thiel@icloud.com>2022-02-10 10:23:48 +0800
commite3a4cfe0ef2bc7b9c785c4fec650f5045cdd1e50 (patch)
tree99f396b33867732f0cd3ab055c5f8ac1a2b8da69 /gitdb/test/test_pack.py
parent2913a6454c9dfc803679dc5f75315e2d821ee977 (diff)
downloadgitdb-e3a4cfe0ef2bc7b9c785c4fec650f5045cdd1e50.tar.gz
Switch from nose to pytest
This is not a full rewrite to pytest style tests, it just changes the minimum to allow pytest to run the existing tests. Resolves #72
Diffstat (limited to 'gitdb/test/test_pack.py')
-rw-r--r--gitdb/test/test_pack.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitdb/test/test_pack.py b/gitdb/test/test_pack.py
index 4b01741..f946197 100644
--- a/gitdb/test/test_pack.py
+++ b/gitdb/test/test_pack.py
@@ -26,7 +26,7 @@ from gitdb.fun import delta_types
from gitdb.exc import UnsupportedOperation
from gitdb.util import to_bin_sha
-from nose import SkipTest
+import pytest
import os
import tempfile
@@ -246,4 +246,4 @@ class TestPack(TestBase):
def test_pack_64(self):
# TODO: hex-edit a pack helping us to verify that we can handle 64 byte offsets
# of course without really needing such a huge pack
- raise SkipTest()
+ pytest.skip('not implemented')