<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pyscss.git/conftest.py, branch v1.3.3</title>
<subtitle>github.com: Kronuz/pyScss.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyscss.git/'/>
<entry>
<title>Better handle running the tests without PIL installed.</title>
<updated>2014-10-17T21:36:04+00:00</updated>
<author>
<name>Eevee (Alex Munroe)</name>
<email>eevee.git@veekun.com</email>
</author>
<published>2014-10-17T21:36:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyscss.git/commit/?id=cf388579d73f12993eb4a50a7bf11c373eff6c87'/>
<id>cf388579d73f12993eb4a50a7bf11c373eff6c87</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Experiment with porting path handling to use pathlib.</title>
<updated>2014-10-06T22:03:11+00:00</updated>
<author>
<name>Eevee (Alex Munroe)</name>
<email>eevee.git@veekun.com</email>
</author>
<published>2014-10-06T22:03:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyscss.git/commit/?id=d3366e69c90701d6bf1f53497a2fb8cec8d40c4e'/>
<id>d3366e69c90701d6bf1f53497a2fb8cec8d40c4e</id>
<content type='text'>
The biggest impetus here is to allow Django integration without having
to copy and paste massive piles of code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The biggest impetus here is to allow Django integration without having
to copy and paste massive piles of code.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add some helpers for doing simple compilations.</title>
<updated>2014-08-28T21:02:34+00:00</updated>
<author>
<name>Eevee (Alex Munroe)</name>
<email>eevee.git@veekun.com</email>
</author>
<published>2014-08-28T21:00:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyscss.git/commit/?id=756c83a3cfe5945944e96ced216ba8578ca257e5'/>
<id>756c83a3cfe5945944e96ced216ba8578ca257e5</id>
<content type='text'>
Port the file tests and the "xfail" missing import test to use them.

Also: current directory is no longer in the search path by default,
but compile_file() adds the given file's containing directory.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Port the file tests and the "xfail" missing import test to use them.

Also: current directory is no longer in the search path by default,
but compile_file() adds the given file's containing directory.
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't show py.test stuff in the traceback for file tests.</title>
<updated>2014-08-28T01:43:11+00:00</updated>
<author>
<name>Eevee (Alex Munroe)</name>
<email>eevee.git@veekun.com</email>
</author>
<published>2014-08-28T01:43:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyscss.git/commit/?id=d7216c20dede113b4a76a97c9151c569f6be0c6e'/>
<id>d7216c20dede113b4a76a97c9151c569f6be0c6e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Reduce tool's reliance on config.LOAD_PATHS.</title>
<updated>2014-08-28T00:02:11+00:00</updated>
<author>
<name>Eevee (Alex Munroe)</name>
<email>eevee.git@veekun.com</email>
</author>
<published>2014-08-28T00:02:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyscss.git/commit/?id=4f7ae70be4a9216ab094add37c4df2c93f4fc07f'/>
<id>4f7ae70be4a9216ab094add37c4df2c93f4fc07f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revamp py.test's handling of test files.</title>
<updated>2014-08-26T21:32:01+00:00</updated>
<author>
<name>Eevee (Alex Munroe)</name>
<email>eevee.git@veekun.com</email>
</author>
<published>2014-08-26T20:03:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyscss.git/commit/?id=e045cd72c467eacd16aaee2613ef0850e559a3ce'/>
<id>e045cd72c467eacd16aaee2613ef0850e559a3ce</id>
<content type='text'>
Each .scss file is now its own test -- you can run them directly, with
`py.test scss/tests/files/foo/bar.scss`, or use wildcards, or specify a
partial directory, or whatever.

Accordingly, `test_files.py` is gone, as is the `--test-file-filter`
option that was so cumbersome I never actually used it.

Regressions:
- xfail is no longer supported.
- Ruby tests are now not collected at all, rather than marked as
  skipped.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Each .scss file is now its own test -- you can run them directly, with
`py.test scss/tests/files/foo/bar.scss`, or use wildcards, or specify a
partial directory, or whatever.

Accordingly, `test_files.py` is gone, as is the `--test-file-filter`
option that was so cumbersome I never actually used it.

Regressions:
- xfail is no longer supported.
- Ruby tests are now not collected at all, rather than marked as
  skipped.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make py.test have reasonable default behavior.</title>
<updated>2013-08-16T20:09:44+00:00</updated>
<author>
<name>Eevee (Alex Munroe)</name>
<email>eevee.git@veekun.com</email>
</author>
<published>2013-08-16T20:08:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyscss.git/commit/?id=d8ed955318f28cd9aa96bc7e18ce51014e9a1a71'/>
<id>d8ed955318f28cd9aa96bc7e18ce51014e9a1a71</id>
<content type='text'>
- Tests ported from Ruby and sassc are skipped by default.
- New xfail directory for test files known to be broken.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Tests ported from Ruby and sassc are skipped by default.
- New xfail directory for test files known to be broken.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add py.test wizardry for running a subset of file tests.  Fixes #134.</title>
<updated>2013-05-23T20:43:24+00:00</updated>
<author>
<name>Eevee</name>
<email>eevee.git@veekun.com</email>
</author>
<published>2013-05-10T17:56:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pyscss.git/commit/?id=4b0a89c6ed7dcadb2ed34dd79e3a5ac3b12d9db3'/>
<id>4b0a89c6ed7dcadb2ed34dd79e3a5ac3b12d9db3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
