0

Ubuntu 13.04 - Python 2.7.4 - Django 1.4.5 - Satchmo_Store 0.9.3

Satchmo の 2 回目のインストール テストを実行すると、同じエラーのように見える次の 2 つのエラーが表示されます。いずれにせよ、それが私に何を伝えようとしているのか、どうすれば修正できるのか、私には十分に理解できません--

root@10:/home/ubuntu/src/satchmo/scripts/store# python manage.py test
Creating test database for alias 'default'...
FAIL: test_sitemap_index_with_https_request (django.contrib.sitemaps.tests.https.HTTPSDetectionSitemapTests)
A sitemap index requested in HTTPS is rendered with HTTPS links
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/local/lib/python2.7/dist-packages/django/contrib/sitemaps/tests/https.py", line 40, in test_sitemap_index_with_https_request
    """ % self.base_url.replace('http://', 'https://'))
AssertionError: '' != '<?xml version="1.0" encoding="UTF-8"?>\n<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">\n<sitemap><loc>https://example.com/simple/sitemap-simple.xml</loc></sitemap>\n</sitemapindex>\n'

  ----------------------------------------------------------------------
Ran 646 tests in 400.243s

FAILED (failures=2, skipped=2)
Destroying test database for alias 'default'...
root@10:/home/ubuntu/src/satchmo/scripts/store#

あなたの親切な助け、洞察力、そして考えにとても感謝しています!ありがとう!

4

1 に答える 1

0

空文字列がこれと等しくないことを示しています: ?xml version="1.0" encoding="UTF-8"?>\n\n https://example.com/simple/sitemap-simple.xml \n\ n

ほとんどの場合、環境が完全にセットアップされていないか、テストにバグがあります

于 2013-08-26T00:00:59.410 に答える