This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lesscpy bootstrap.less -V | |
Compiling target: bootstrap.less | |
Compiling target: /home/jtomasek/bootstrap/less/variables.less | |
E: /home/jtomasek/bootstrap/less/variables.less line: 157, Syntax Error, token: `t_popen`, `(` | |
Compiling target: /home/jtomasek/bootstrap/less/mixins.less | |
E: /home/jtomasek/bootstrap/less/mixins.less line: 47, Syntax Error, token: `;`, `;` | |
E: /home/jtomasek/bootstrap/less/mixins.less line: 52, Syntax Error, token: `;`, `;` | |
E: /home/jtomasek/bootstrap/less/mixins.less line: 161, Syntax Error, token: `;`, `;` | |
E: /home/jtomasek/bootstrap/less/mixins.less line: 166, Syntax Error, token: `;`, `;` | |
E: /home/jtomasek/bootstrap/less/mixins.less line: 171, Syntax Error, token: `;`, `;` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fedora18vm: ~/tuskar-ui | |
→ ./run_tests.sh | |
Checking environment. | |
Environment is up to date. | |
Running Tuskar-UI application tests | |
nosetests tuskar_ui --nocapture --nologcapture --cover-package=openstack_dashboard --cover-inclusive --all-modules --verbosity=1 | |
Creating test database for alias 'default'... | |
........................Problem instantiating action class. | |
Traceback (most recent call last): | |
File "/home/jtomasek/tuskar-ui/.venv/src/horizon/horizon/workflows/base.py", line 373, in action |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
in test/less/media.less | |
@variable: 768px; | |
@media (min-width: @variable) { | |
aside { float: left; } | |
} | |
in test/css/media.css | |
@media (min-width: 768px) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
CSS media groups | |
*/ | |
@media screen, projection { | |
html { | |
background: #fffef0; | |
color: #300; | |
} | |
body { | |
max-width: 35em; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FAIL: test_detail_invalid_port_range (openstack_dashboard.dashboards.project.access_and_security.security_groups.tests.SecurityGroupsViewTests) | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "/home/jtomasek/horizon/openstack_dashboard/test/helpers.py", line 83, in instance_stub_out | |
return fn(self) | |
File "/home/jtomasek/horizon/openstack_dashboard/dashboards/project/access_and_security/security_groups/tests.py", line 356, in test_detail_invalid_port_range | |
self.assertContains(res, "greater than or equal to") | |
File "/home/jtomasek/horizon/.venv/lib/python2.7/site-packages/django/test/testcases.py", line 664, in assertContains | |
msg_prefix + "Couldn't find %s in response" % text_repr) | |
AssertionError: Couldn't find 'greater than or equal to' in response |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(.venv)→ ../Lesscpy/bin/lesscpy openstack_dashboard/static/bootstrap/less/bootstrap.less -g -V | |
Generating LALR tables | |
WARNING: 192 shift/reduce conflicts | |
Compiling target: openstack_dashboard/static/bootstrap/less/bootstrap.less | |
PLY: PARSE DEBUG START | |
State : 0 | |
Stack : . LexToken(css_import,'@import',12,254) | |
Action : Shift and goto state 26 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEST=/opt/stack | |
DATA_DIR=$DEST/data | |
# no loging to file, it's far to big | |
# LOGFILE=$DATA_DIR/logs/stack.log | |
# SCREEN_LOGDIR=$DATA_DIR/logs | |
VERBOSE=True | |
disable_service mysql | |
enable_service postgresql | |
disable_service rabbit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Page not found (404) | |
Request Method: GET | |
Request URL: http://fedora18vm:3000/jasmine/TemplatesTests/ | |
Using the URLconf defined in openstack_dashboard.urls, Django tried these URL patterns, in this order: | |
^$ [name='splash'] | |
^auth/ | |
^home/$ [name='user_home'] | |
^i18n/js/(?P<packages>\S+?)/$ [name='jsi18n'] | |
^i18n/setlang/$ [name='set_language'] | |
^i18n/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf8 -*- | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); you may | |
# not use this file except in compliance with the License. You may obtain | |
# a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def test_index_nodes_list_exception(self): | |
with patch.object(tuskar.BaremetalNode, 'list') as mock_method: | |
mock_method.side_effect = self.exceptions.tuskar | |
res = self.client.get(INDEX_URL) | |
self.assertEqual(mock_method.call_count, 1) | |
self.assertRedirectsNoFollow(res, RESOURCES_OVERVIEW_URL) |