Skip to content
This repository has been archived by the owner on Aug 13, 2020. It is now read-only.

Commit

Permalink
Merge pull request #14 from Juanlu001/fix-tests
Browse files Browse the repository at this point in the history
Fix tests
  • Loading branch information
AlexS12 committed Dec 26, 2015
2 parents b6db8d1 + 17eda22 commit f323ab4
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
__pycache__
.cache
.idea

*.py[cod]

*.egg-info
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# PyFME
Python Flight Mechanics Engine

## How to run the tests

Install in editable mode and call `py.test`:

$ pip install -e .
$ py.test

11 changes: 11 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env python
# coding: utf-8

from distutils.core import setup

setup(
name="PyFME",
version="0.1.dev0",
packages=['pyfme'],
package_dir={'': 'src'},
)
Empty file removed src/pyfme/utils/tests/__init__.py
Empty file.

0 comments on commit f323ab4

Please sign in to comment.