Skip to content
Snippets Groups Projects
Commit 3217c954 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fixing hopefully

parent d7339462
No related branches found
No related tags found
No related merge requests found
Pipeline #286 passed with stages
in 1 minute and 20 seconds
...@@ -12,13 +12,14 @@ unit_tests: ...@@ -12,13 +12,14 @@ unit_tests:
stage: test stage: test
coverage: /^TOTAL\s+\d+\s+\d+\s+\d+\s+\d+\s+(\d+)%$/ coverage: /^TOTAL\s+\d+\s+\d+\s+\d+\s+\d+\s+(\d+)%$/
script: script:
- nosetests --with-coverage - python setup.py nosetests
# vagrant_backed_tests # vagrant_backed_tests
# stage: test # stage: test
# coverage: /^TOTAL\s+\d+\s+\d+\s+\d+\s+\d+\s+(\d+)%$/
# script: # script:
# - vagrant ssh -c 'sudo shutdown -P +10' # - vagrant ssh -c 'sudo shutdown -P +10'
# - vagrant ssh -c 'cd /vagrant; nosetests --with-coverage' # - vagrant ssh -c 'cd /vagrant; python setup.py nosetests'
# before_script: # before_script:
# - vagrant up # - vagrant up
# after_script: # after_script:
......
# coding=UTF-8 # coding=UTF-8
import unittest
class TestX(unittest.TestCase):
def test_wtf(self):
import your_project_source.erer
pass
\ No newline at end of file
# coding=UTF-8
"""
It sounds like a melody
"""
from __future__ import print_function, absolute_import, division
import six
import logging
logger = logging.getLogger(__name__)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment