ablog: disable failed test

mivorasu cd8d590a c591bcf5

+14 -9
+14 -9
pkgs/by-name/ab/ablog/package.nix
··· 5 5 gitUpdater, 6 6 }: 7 7 8 - python3Packages.buildPythonApplication rec { 8 + let 9 + version = "0.11.12"; 10 + in 11 + python3Packages.buildPythonApplication { 9 12 pname = "ablog"; 10 - version = "0.11.12"; 11 - format = "pyproject"; 13 + inherit version; 14 + pyproject = true; 12 15 13 16 src = fetchFromGitHub { 14 17 owner = "sunpy"; ··· 20 23 build-system = with python3Packages; [ 21 24 setuptools 22 25 setuptools-scm 26 + wheel 23 27 ]; 24 - 25 - nativeBuildInputs = with python3Packages; [ wheel ]; 26 28 27 29 dependencies = with python3Packages; [ 28 30 docutils ··· 40 42 ]; 41 43 42 44 pytestFlags = [ 43 - "-Wignore::sphinx.deprecation.RemovedInSphinx90Warning" 44 45 "--rootdir=src/ablog" 45 46 "-Wignore::sphinx.deprecation.RemovedInSphinx90Warning" # Ignore ImportError 46 47 ]; 47 48 48 - # assert "post 1" not in html 49 - # AssertionError 50 - disabledTests = [ "test_not_safe_for_parallel_read" ]; 49 + disabledTests = [ 50 + # upstream investigation is still ongoing 51 + # https://github.com/sunpy/ablog/issues/302 52 + "test_not_safe_for_parallel_read" 53 + # need sphinx old version 54 + "test_feed" 55 + ]; 51 56 52 57 passthru.updateScript = gitUpdater { rev-prefix = "v"; }; 53 58