This simple project is an example repo for Python projects for Verificación y Desarrollo de Software.
- Install Python
- (Windows) https://www.python.org/downloads/release/python-2713/
- (Mac) Installed yet
- (Linux) sudo apt-get install python2.7
- Install environment
- Sublime Text (https://www.sublimetext.com/)
- PyCharm (https://www.jetbrains.com/pycharm/)
- Install Pip (https://pypi.python.org/pypi/pip, https://pip.pypa.io/en/stable/installing/)
- Install virtualenv (https://virtualenv.pypa.io/en/stable/installation/)
- Instalar git
- https://git-scm.com/download/win
sudo apt-get install gitgit
- Clone this repo
- Create a virtual env into the folder (i.e. ENV)
virtalenv ENV
- Activate the environment
- *NIX
source bin/activate - Windows
env\Scripts\activate
- *NIX
Open this repo with your IDE. Install requirements into your environment. You can use:
pip install -r requirements.txtpython setup.py installmake init
make tests
We need to create 2 different branches: master and develop (you can use this)
master: this will be the branch I want to evaluate.develop: use it to add all the code you develop
Everytime you want to pass code from develop to master you need to do a pull request and you need someone review your code. You can know more in this page.