Skip to content

Instantly share code, notes, and snippets.

@koba-ninkigumi
Created March 13, 2012 00:23
Show Gist options
  • Save koba-ninkigumi/2025627 to your computer and use it in GitHub Desktop.
Save koba-ninkigumi/2025627 to your computer and use it in GitHub Desktop.
py.testのセットアップ
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import _pytest
def sortedset():
l = [3, 6, 1, 3, 5, 2, 7, 6]
m = [2,7]
return sorted(set(l) - set(m), key=l.index)
def test_sortedset():
assert sortedset() == [3, 6, 1, 5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment