Skip to content
This repository was archived by the owner on May 7, 2024. It is now read-only.

Fixing format error in mark down read me file #2

Merged
merged 4 commits into from
Feb 28, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions doc/README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
Setting up your development environment
========================================
1. Install the dependencies via pip with the script below.
```Shell
python scripts/dev_setup.py

```
2. Add `<clone root>\src` to your PYTHONPATH environment variable:

#####Windows
##### Windows
```BatchFile
set PYTHONPATH=<clone root>\src;%PYTHONPATH%
```
#####OSX/Ubuntu (bash)

##### OSX/Ubuntu (bash)
```Shell
export PYTHONPATH=<clone root>/src:${PYTHONPATH}

##Running Tests:
####Command line
#####Windows:
```
## Running Tests:
#### Command line
Provided your PYTHONPATH was set correctly, you can run the tests from your `<root clone>` directory.

To test the common modules of the CLI:
Expand All @@ -27,4 +29,4 @@
python -m unittest discover -s src/mssqlscripter/mssql/scripter/tests
```

Additionally, you can run tests for all CLI tools and common modules using the `Run_All_Tests.bat` script.
Additionally, you can run tests for all CLI tools and common modules using the `run_all_tests.bat` or `sh run_all_tests` script.
File renamed without changes.