Skip to content

Commit

Permalink
Trying to find out CWD of test_binary on CI py27
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Blumberg committed Jan 10, 2019
1 parent 430293f commit 1a05f1b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
package_data = {"": ["*.md", "*.txt", "*.png", "databases/sars/hail/*", "databases/sars/supercell/*",
"databases/shapefiles/*", "../rc/*"],}
include_package_data = True
classifiers = ["Development Status :: 3 - Alpha"]

#install_requires = ['pyside>=1.2.1', 'numpy>=1.10.1']
install_requires = []
Expand Down Expand Up @@ -69,6 +68,13 @@

ver = versioneer.get_version()
ver = ver.split('-')[0]
if 'a' in ver:
classifiers = ["Development Status :: 3 - Alpha"]
elif 'b' in ver:
classifiers = ["Development Status :: 4 - Beta"]
else:
classifiers = ["Development Status :: 5 - Production/Stable"]

setup(
name = name,
author = author,
Expand Down
2 changes: 2 additions & 0 deletions sharppy/tests/test_binary.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import os
print("Current DIR:", os.getcwd())
import sys
import pytest
print("Current DIR:", os.getcwd())
#import runsharp.full_gui as full_gui
from runsharp import full_gui

Expand Down

0 comments on commit 1a05f1b

Please sign in to comment.