-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI is not running for PRs #86
Comments
@fabaff Actually this is expected behaviour (or I don't know how to handle this) |
@fabaff any ideas about how we can do better? |
Perhaps something like this could be helpful. If if os.getenv('TOKEN'):
host = 'mqtt.flespi.io'
username = os.getenv("TOKEN")
password = None
port = 1883
else:
host = os.getenv("HOST", "127.0.0.1")
username = os.getenv("USERNAME", "")
password = os.getenv("PASSWORD", None)
port = os.getenv("PORT", 1883) Not very elegant but would allow to run the tests locally before submitting a pull request. Perhaps it would require to add |
The CI is not running on PRs. It seems that the credentials are not valid which are used by travis.
The text was updated successfully, but these errors were encountered: