Skip to content

Commit 6099ac8

Browse files
committed
Added travis CI support
1 parent 1b3ab55 commit 6099ac8

2 files changed

Lines changed: 13 additions & 3 deletions

File tree

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: python
2+
python:
3+
- "2.5"
4+
- "2.6"
5+
- "2.7"
6+
- "pypy"
7+
8+
script: nosetests

README.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Although memory maps have many advantages, they represent a very limited system
99
Overview
1010
########
1111

12+
.. image:: https://travis-ci.org/Byron/smmap.svg?branch=master :target: https://travis-ci.org/Byron/smmap
13+
1214
Smmap wraps an interface around mmap and tracks the mapped files as well as the amount of clients who use it. If the system runs out of resources, or if a memory limit is reached, it will automatically unload unused maps to allow continued operation.
1315

1416
To allow processing large files even on 32 bit systems, it allows only portions of the file to be mapped. Once the user reads beyond the mapped region, smmap will automatically map the next required region, unloading unused regions using a LRU algorithm.
@@ -58,17 +60,17 @@ The project is home on github at `https://github.com/Byron/smmap <https://github
5860

5961
The latest source can be cloned from github as well:
6062

61-
* git://github.com/gitpython-developers/smmap.git
63+
* git://github.com/gitpython-developers/smmap.git
6264

6365

6466
For support, please use the git-python mailing list:
6567

66-
* http://groups.google.com/group/git-python
68+
* http://groups.google.com/group/git-python
6769

6870

6971
Issues can be filed on github:
7072

71-
* https://github.com/Byron/smmap/issues
73+
* https://github.com/Byron/smmap/issues
7274

7375
###################
7476
License Information

0 commit comments

Comments
 (0)