├── hola2.txt ├── test_hola.py ├── README.md ├── hola.txt ├── archivo_juanlu.txt ├── HARCHIBO_DE_HIMAJEN.jpg ├── appveyor.yml ├── PRUEBAPRUEBA1!!11! └── .travis.yml /hola2.txt: -------------------------------------------------------------------------------- 1 | HASTA LUEGO, BABY 2 | fgfsdfg sdfgsd 3 | -------------------------------------------------------------------------------- /test_hola.py: -------------------------------------------------------------------------------- 1 | def test_hola(): 2 | assert True 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | test 2 | ==== 3 | 4 | Repositorio para pruebas 5 | -------------------------------------------------------------------------------- /hola.txt: -------------------------------------------------------------------------------- 1 | oscar el chico de las poesias, y es un capullo EEEEEEEEEEE 2 | -------------------------------------------------------------------------------- /archivo_juanlu.txt: -------------------------------------------------------------------------------- 1 | Esto es la prueba de Juanlu 2 | 3 | Y esto es más texto de prueba 4 | -------------------------------------------------------------------------------- /HARCHIBO_DE_HIMAJEN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroPython/test/master/HARCHIBO_DE_HIMAJEN.jpg -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | version: 0.5.dev0-{build} 2 | 3 | branches: 4 | only: 5 | - master 6 | 7 | matrix: 8 | fast_finish: true 9 | 10 | install: 11 | - "set PATH=C:\\Miniconda3-x64;C:\\Miniconda3-x64\\Scripts;%PATH%" 12 | 13 | build: off 14 | 15 | test_script: 16 | - "py.test -vv" # Test against installed code 17 | -------------------------------------------------------------------------------- /PRUEBAPRUEBA1!!11!: -------------------------------------------------------------------------------- 1 | HOLA 2 | 3 | ... eh... hola 4 | 5 | MI NOMBRE ES JARRI POTER @ HOTMAIL 6 | 7 | ... eh... hola, Harry Potter... 8 | 9 | ERES EL BLOK DE NOTAS MALDITO? OIGA??'''?'' 10 | 11 | ...eh, no, yo no diría eso, sino q 12 | HOYGA CONOSES LA CAMARA DE LOS SECRETOS? SAVES QUIEN ES EL ASENSIO ??'?'? 13 | 14 | ... Bueno, ciertamente, se algo sobre el tem 15 | ME LO PUEDES MANDAR POR CORREO A MI CORREO GRASIAS LE DEJO MI DIES AGUANTE TARINGA 16 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | 3 | 4 | language: python 5 | 6 | python: 7 | - "2.7" 8 | - "3.5" 9 | 10 | branches: 11 | only: 12 | - master 13 | 14 | before_install: 15 | # http://conda.pydata.org/docs/travis.html 16 | - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh 17 | - bash miniconda.sh -b -p $HOME/miniconda 18 | - export PATH="$HOME/miniconda/bin:$PATH" 19 | - hash -r 20 | - conda config --set always_yes yes --set changeps1 no 21 | # Useful for debugging any issues with conda 22 | - conda info -a 23 | - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION 24 | - source activate test-environment 25 | - pip install codecov pytest-cov 26 | install: 27 | - echo "YES" 28 | script: 29 | - py.test --cov 30 | after_success: 31 | - codecov 32 | --------------------------------------------------------------------------------