summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorstepshal <nessento@openmailbox.org>2016-06-16 17:44:13 +0700
committerstepshal <nessento@openmailbox.org>2016-06-16 17:44:13 +0700
commitdded3cb8862d91bf20c5f8e4a4dd37b108c7b8ab (patch)
tree9a98e0e6ebcbe543179759155996cf249c9e03ed /tests
parent7c760ac0256aa1d27433e8f410ae014be2da2334 (diff)
downloadranger-dded3cb8862d91bf20c5f8e4a4dd37b108c7b8ab.tar.gz
Add one blank line where is expected
Diffstat (limited to 'tests')
-rw-r--r--tests/ranger/container/test_bookmarks.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/ranger/container/test_bookmarks.py b/tests/ranger/container/test_bookmarks.py
index 46c615c6..af8aab23 100644
--- a/tests/ranger/container/test_bookmarks.py
+++ b/tests/ranger/container/test_bookmarks.py
@@ -36,8 +36,10 @@ def testbookmarks(tmpdir):
 
     # We don't uneccesary update when the file on disk does not change
     origupdate = secondstore.update
+    
     class OutOfDateException(Exception):
         pass
+    
     def crash():
         raise OutOfDateException("Don't access me")
     secondstore.update = crash
19-06-04 13:45:17 +0200 committer William Wennerström <william@optmzr.se> 2019-06-06 13:58:26 +0200 Add Travis CI tests for Arch, Debian and OSX/macOS' href='/danisanti/profani-tty/commit/Dockerfile.tumbleweed?id=3700c80ad1258885256fa963dd8a13ab84853170'>3700c80a ^
9cd5dfbd ^

3700c80a ^
9cd5dfbd ^

3700c80a ^
9cd5dfbd ^
0211ab0e ^
3700c80a ^
9cd5dfbd ^

3700c80a ^

9cd5dfbd ^
3700c80a ^
9cd5dfbd ^
cdebb559 ^

672f3e22 ^
3aafffde ^
0c7350e2 ^

0857b5ee ^




9cd5dfbd ^



9db466dc ^






9cd5dfbd ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
                                            
                        
 


                                     
                                                 

                    
            


                
               
                

                
                   

                  
                   
                  
                    
                       

                   

                              
                 
        
                 

                   
                  
                 

                    




                                                               



                     






                                                            



                               
# Build the latest openSUSE Tumbleweed image
FROM opensuse/tumbleweed

# expect - for functional tests
# libmicrohttpd - for stabber
# glibc-locale - to have en_US locale
RUN zypper --non-interactive in --no-recommends \
  autoconf \
  autoconf-archive \
  automake \
  expect-devel \
  gcc \
  git \
  glib2-devel \
  glibc-locale \
  gtk2-devel \
  libXss-devel \
  libcmocka-devel \
  libcurl-devel \
  libexpat-devel \
  libgcrypt-devel \
  libgpgme-devel \
  libstrophe-devel \
  libmicrohttpd-devel \
  libnotify-devel \
  libotr-devel \
  libsignal-protocol-c-devel \
  libtool \
  libuuid-devel \
  make \
  ncurses-devel \
  python310 \
  python310-devel \
  readline-devel \
  sqlite3-devel \
  gdk-pixbuf-devel \
  qrencode-devel

# https://github.com/openSUSE/docker-containers-build/issues/26
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8

RUN mkdir -p /usr/src
WORKDIR /usr/src

#RUN mkdir -p /usr/src/stabber
#RUN git clone git://github.com/boothj5/stabber.git
#WORKDIR /usr/src/stabber
#RUN ./bootstrap.sh
#RUN ./configure --prefix=/usr --disable-dependency-tracking
#RUN make
#RUN make install

RUN mkdir -p /usr/src/profanity
WORKDIR /usr/src/profanity
COPY . /usr/src/profanity