From fc0a414fe67e4607faaad6578c18437f15eb4bdf Mon Sep 17 00:00:00 2001 From: Karambir Singh Nain Date: Tue, 8 Mar 2016 15:57:53 +0530 Subject: [PATCH] Fixed markdown links in README and README.dev [Patched with some tweaks by tabbott] --- README.dev.md | 7 ++++--- README.md | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.dev.md b/README.dev.md index ac3c335009..067d19bf0a 100644 --- a/README.dev.md +++ b/README.dev.md @@ -308,7 +308,7 @@ Now you're going to install Zulip dependencies in the image: ``` docker run -itv $(pwd):/srv/zulip -p 80:9991 user/zulipdev /bin/bash -$ /usr/bin/python /srv/zulip/provision.py --docker +$ /usr/bin/python /srv/zulip/provision.py --docker docker ps -af ancestor=user/zulipdev docker commit -m "Zulip installed" user/zulipdev:v2 ``` @@ -395,7 +395,8 @@ migrations and then cleanly restaring the server for you). Running the test suite ====================== -For more details, check out the [detailed testing +For more details, especially on how to write tests, check out the +[detailed testing docs](http://zulip.readthedocs.org/en/latest/testing.html). To run all the tests, do this: @@ -447,4 +448,4 @@ Possible testing issues `do-destroy-rebuild*-database` scripts. - When building the development environment using Vagrant and the LXC provider, if you encounter permissions errors, you may need to `chown -R 1000:$(whoami) /path/to/zulip` on the host before running `vagrant up` in order to ensure that the synced directory has the correct owner during provision. This issue will arise if you run `id username` on the host where `username` is the user running Vagrant and the output is anything but 1000. - This seems to be caused by Vagrant behavior; more information can be found here https://github.com/fgrehm/vagrant-lxc/wiki/FAQ#help-my-shared-folders-have-the-wrong-owner + This seems to be caused by Vagrant behavior; more information can be found [here](https://github.com/fgrehm/vagrant-lxc/wiki/FAQ#help-my-shared-folders-have-the-wrong-owner). diff --git a/README.md b/README.md index 612f1399ff..79b092cb0d 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ guidelines](http://zulip.readthedocs.org/en/latest/code-style.html#commit-messag * **Testing**. The Zulip automated tests all run automatically when you submit a pull request, but you can also run them all in your development environment following the instructions in the [testing -section](https://github.com/zulip/zulip#running-the-test-suite) below. +docs](https://github.com/zulip/zulip/blob/master/README.dev.md#running-the-test-suite). * **Developer Documentation**. Zulip has a growing collection of developer documentation on [Read The Docs](https://zulip.readthedocs.org/).