Rename test_pylast_example.yaml -> example_test_pylast.yaml (makes tab-autocompletion happier)

This commit is contained in:
hugovk 2014-03-03 08:59:36 +02:00
parent c57afec43f
commit 954e32a819
3 changed files with 5 additions and 5 deletions

View file

@ -40,7 +40,7 @@ API_SECRET = "425b55975eed76058ac220b7b4e8a054"
username = "your_user_name" username = "your_user_name"
password_hash = pylast.md5("your_password") password_hash = pylast.md5("your_password")
network = pylast.LastFMNetwork(api_key = API_KEY, api_secret = network = pylast.LastFMNetwork(api_key = API_KEY, api_secret =
API_SECRET, username = username, password_hash = password_hash) API_SECRET, username = username, password_hash = password_hash)
# now you can use that object everywhere # now you can use that object everywhere
@ -61,7 +61,7 @@ Testing
test_pylast.py contains integration tests with Last.fm, and plenty of code examples. test_pylast.py contains integration tests with Last.fm, and plenty of code examples.
You need a test account at Last.fm that can be cluttered with test data, and an API key and secret. Either copy test_pylast_example.yaml to test_pylast.yaml and fill out the credentials, or set them as environment variables like: You need a test account at Last.fm that can be cluttered with test data, and an API key and secret. Either copy example_test_pylast.yaml to test_pylast.yaml and fill out the credentials, or set them as environment variables like:
``` ```
export PYLAST_USERNAME=TODO_ENTER_YOURS_HERE export PYLAST_USERNAME=TODO_ENTER_YOURS_HERE
@ -78,7 +78,7 @@ pip install pyyaml
To run with coverage: To run with coverage:
``` ```
pip install pip install
pip install coverage pip install coverage
coverage run --source=pylast ./test_pylast.py coverage run --source=pylast ./test_pylast.py
coverage report # for command-line report coverage report # for command-line report

View file

@ -6,14 +6,14 @@ import os
from random import choice from random import choice
import time import time
import unittest import unittest
import yaml # pip install pyyaml
import pylast import pylast
def load_secrets(): def load_secrets():
secrets_file = "test_pylast.yaml" secrets_file = "test_pylast.yaml"
if os.path.isfile(secrets_file): if os.path.isfile(secrets_file):
with open(secrets_file, "r") as f: # see test_pylast_example.yaml import yaml # pip install pyyaml
with open(secrets_file, "r") as f: # see example_test_pylast.yaml
doc = yaml.load(f) doc = yaml.load(f)
else: else:
doc = {} doc = {}